Update all files for SegEarth-OV
Browse files- model_config.json +32 -0
model_config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"description": "Unified SegEarth: OV, OV-2 (CLIP-based), OV-3 (SAM3-based). Each variant in self-contained subfolder.",
|
| 3 |
+
"subfolders": {
|
| 4 |
+
"OV": {
|
| 5 |
+
"path": "OV",
|
| 6 |
+
"config": "OV/config.json",
|
| 7 |
+
"backbone": "CLIP",
|
| 8 |
+
"model_id": "openai/clip-vit-base-patch16",
|
| 9 |
+
"featup": "jbu_one"
|
| 10 |
+
},
|
| 11 |
+
"OV-2": {
|
| 12 |
+
"path": "OV-2",
|
| 13 |
+
"config": "OV-2/config.json",
|
| 14 |
+
"backbone": "AlignEarth",
|
| 15 |
+
"model_id": "BiliSakura/AlignEarth-SAR-ViT-B-16",
|
| 16 |
+
"featup": "jbu_one"
|
| 17 |
+
},
|
| 18 |
+
"OV-3": {
|
| 19 |
+
"path": "OV-3",
|
| 20 |
+
"config": "OV-3/config.json",
|
| 21 |
+
"backbone": "SAM3",
|
| 22 |
+
"model_id": "facebook/sam3",
|
| 23 |
+
"featup": null
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
"usage": {
|
| 27 |
+
"OV": "from OV.pipeline import SegEarthPipeline; pipe = SegEarthPipeline()",
|
| 28 |
+
"OV-2": "from OV-2.pipeline import SegEarthPipeline; pipe = SegEarthPipeline()",
|
| 29 |
+
"OV-3": "from OV-3.pipeline import SegEarthPipeline; pipe = SegEarthPipeline()"
|
| 30 |
+
},
|
| 31 |
+
"checkpoints": "Self-contained: all backbones (CLIP, AlignEarth, SAM3) and SimFeatUp weights included; no download required"
|
| 32 |
+
}
|