geospatial-1 / levircd_segformer /preprocessing.json
Umar666's picture
Add exported Track-A ONNX bundles (SegFormer, DINOv2+LoRA): model.onnx + preprocessing + config + parity + model card
0afa0a0 verified
Raw
History Blame Contribute Delete
842 Bytes
{
"input_name": "input",
"output_name": "logits",
"input_shape": [
"batch",
2,
3,
256,
256
],
"input_layout": "(batch, 2 dates, 3 RGB channels, H, W)",
"band_order": [
"R",
"G",
"B"
],
"value_range": "float32; divide 8-bit RGB by 255 BEFORE normalization",
"normalization": {
"mean": [
0.485,
0.456,
0.406
],
"std": [
0.229,
0.224,
0.225
]
},
"input_size": 256,
"dynamic_hw": true,
"resize_to_input": "feed 256px tiles directly (fully-convolutional; dynamic H/W also allowed)",
"tiling": {
"tile_size": 256,
"overlap": 0
},
"output": {
"activation": "sigmoid",
"meaning": "per-pixel change probability (channel 0)",
"recommended_threshold": 0.48046875,
"threshold_source": "val-selected (max-F1)"
}
}