├── .gitignore ├── BLIP ├── BLIP.gif ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── cog.yaml ├── configs │ ├── bert_config.json │ ├── caption_coco.yaml │ ├── med_config.json │ ├── nlvr.yaml │ ├── nocaps.yaml │ ├── pretrain.yaml │ ├── retrieval_coco.yaml │ ├── retrieval_flickr.yaml │ ├── retrieval_msrvtt.yaml │ └── vqa.yaml ├── demo.ipynb ├── eval_nocaps.py ├── eval_retrieval_video.py ├── models │ ├── __init__.py │ ├── blip.py │ ├── blip_itm.py │ ├── blip_nlvr.py │ ├── blip_pretrain.py │ ├── blip_retrieval.py │ ├── blip_vqa.py │ ├── med.py │ ├── nlvr_encoder.py │ ├── vit-Mengcheng的MacBook Air.py │ └── vit.py ├── predict.py ├── pretrain.py ├── requirements.txt ├── train_caption.py ├── train_nlvr.py ├── train_retrieval.py ├── train_vqa.py ├── transform │ └── randaugment.py └── utils.py ├── README.md ├── configs ├── base_config.py ├── cfg_chn6-cug.py ├── cfg_ddhrnet_korea_sar.py ├── cfg_ddhrnet_shandong_sar.py ├── cfg_ddhrnet_xian_sar.py ├── cfg_deepglobe_road.py ├── cfg_fusar_sar.py ├── cfg_hrsid.py ├── cfg_iSAID.py ├── cfg_inria.py ├── cfg_loveda.py ├── cfg_massachusetts_road.py ├── cfg_openearthmap.py ├── cfg_openearthmap_sar.py ├── cfg_pie_sar.py ├── cfg_potsdam.py ├── cfg_spacenet_road.py ├── cfg_uavid.py ├── cfg_udd5.py ├── cfg_vaihingen.py ├── cfg_vdd.py ├── cfg_wbs-si.py ├── cfg_whu_aerial.py ├── cfg_whu_sar.py ├── cfg_whu_sat_II.py ├── cfg_xBD.py ├── cfg_yeseg_sar.py ├── cls_chn6-cug.txt ├── cls_ddhrnet_korea_sar.txt ├── cls_ddhrnet_shandong_sar.txt ├── cls_ddhrnet_xian_sar.txt ├── cls_deepglobe.txt ├── cls_fusar.txt ├── cls_hrsid.txt ├── cls_iSAID.txt ├── cls_inria.txt ├── cls_loveda.txt ├── cls_massachusetts_building.txt ├── cls_openearthmap.txt ├── cls_openearthmap_sar.txt ├── cls_pie_sar.txt ├── cls_potsdam.txt ├── cls_roadval.txt ├── cls_uavid.txt ├── cls_udd5.txt ├── cls_vaihingen.txt ├── cls_vdd.txt ├── cls_wbs-si.txt ├── cls_whu.txt ├── cls_whu_sar.txt ├── cls_xBD.txt ├── cls_yeseg_sar.txt └── my_name.txt ├── custom_datasets.py ├── dataset_prepare.md ├── demo.py ├── demo └── oem_koeln_50.tif ├── dist_test.sh ├── eval.py ├── eval_all.py ├── gem ├── __init__.py ├── gem.py ├── gem_utils.py └── gem_wrapper.py ├── open_clip ├── __init__.py ├── bpe_simple_vocab_16e6.txt.gz ├── coca_model.py ├── constants.py ├── eva_clip │ ├── __init__.py │ ├── bpe_simple_vocab_16e6.txt.gz │ ├── constants.py │ ├── eva_vit_model.py │ ├── factory.py │ ├── hf_configs.py │ ├── hf_model.py │ ├── loss.py │ ├── model.py │ ├── model_configs │ │ ├── EVA01-CLIP-B-16.json │ │ ├── EVA01-CLIP-g-14-plus.json │ │ ├── EVA01-CLIP-g-14.json │ │ ├── EVA02-CLIP-B-16.json │ │ ├── EVA02-CLIP-L-14-336.json │ │ ├── EVA02-CLIP-L-14.json │ │ ├── EVA02-CLIP-bigE-14-plus.json │ │ └── EVA02-CLIP-bigE-14.json │ ├── modified_resnet.py │ ├── openai.py │ ├── pretrained.py │ ├── rope.py │ ├── timm_model.py │ ├── tokenizer.py │ ├── transform.py │ ├── transformer.py │ └── utils.py ├── factory.py ├── hf_configs.py ├── hf_model.py ├── loss.py ├── model.py ├── model_configs │ ├── EVA01-g-14-plus.json │ ├── EVA01-g-14.json │ ├── EVA02-B-16.json │ ├── EVA02-E-14-plus.json │ ├── EVA02-E-14.json │ ├── EVA02-L-14-336.json │ ├── EVA02-L-14.json │ ├── ViT-B-16-SigLIP-256.json │ ├── ViT-B-16-SigLIP-384.json │ ├── ViT-B-16-SigLIP-512.json │ ├── ViT-B-16-SigLIP-i18n-256.json │ ├── ViT-B-16-SigLIP.json │ ├── ViT-B-16-plus-240.json │ ├── ViT-B-16-plus.json │ ├── ViT-B-16-quickgelu.json │ ├── ViT-B-16.json │ ├── ViT-B-32-256.json │ ├── ViT-B-32-plus-256.json │ ├── ViT-B-32-quickgelu.json │ ├── ViT-B-32.json │ ├── ViT-H-14-378-quickgelu.json │ ├── ViT-H-14-CLIPA-336.json │ ├── ViT-H-14-CLIPA.json │ ├── ViT-H-14-quickgelu.json │ ├── ViT-H-14.json │ ├── ViT-H-16.json │ ├── ViT-L-14-280.json │ ├── ViT-L-14-336.json │ ├── ViT-L-14-CLIPA-336.json │ ├── ViT-L-14-CLIPA.json │ ├── ViT-L-14-quickgelu.json │ ├── ViT-L-14.json │ ├── ViT-L-16-320.json │ ├── ViT-L-16-SigLIP-256.json │ ├── ViT-L-16-SigLIP-384.json │ ├── ViT-L-16.json │ ├── ViT-M-16-alt.json │ ├── ViT-M-16.json │ ├── ViT-M-32-alt.json │ ├── ViT-M-32.json │ ├── ViT-bigG-14-CLIPA-336.json │ ├── ViT-bigG-14-CLIPA.json │ ├── ViT-bigG-14.json │ ├── ViT-e-14.json │ ├── ViT-g-14.json │ ├── coca_ViT-B-32.json │ ├── coca_ViT-L-14.json │ ├── coca_base.json │ ├── coca_roberta-ViT-B-32.json │ ├── convnext_base.json │ ├── convnext_base_w.json │ ├── convnext_base_w_320.json │ ├── convnext_large.json │ ├── convnext_large_d.json │ ├── convnext_large_d_320.json │ ├── convnext_small.json │ ├── convnext_tiny.json │ ├── convnext_xlarge.json │ ├── convnext_xxlarge.json │ └── convnext_xxlarge_320.json ├── modified_resnet.py ├── openai.py ├── pos_embed.py ├── pretrained.py ├── push_to_hf_hub.py ├── timm_model.py ├── tokenizer.py ├── transform.py ├── transformer.py ├── utils.py ├── version.py ├── zero_shot_classifier.py └── zero_shot_metadata.py ├── prompts └── imagenet_template.py ├── requirements.txt ├── segearth_segmentor.py ├── simfeatup_dev ├── upsamplers.py └── weights │ ├── clip_jbu_stack_cocostuff.ckpt │ ├── maskclip_jbu_stack_cocostuff.ckpt │ └── xclip_jbu_one_million_aid.ckpt ├── tools └── dataset_converters │ ├── chn6-cug.py │ ├── deepglobe_road.py │ ├── inria.py │ ├── isaid.py │ ├── loveda.py │ ├── openearthmap.py │ ├── potsdam.py │ ├── roadval.py │ ├── uavid.py │ ├── vaihingen.py │ ├── wbs-si.py │ ├── wbs-si_val.txt │ ├── whu.py │ └── xBD.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/.gitignore -------------------------------------------------------------------------------- /BLIP/BLIP.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/BLIP.gif -------------------------------------------------------------------------------- /BLIP/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/CODEOWNERS -------------------------------------------------------------------------------- /BLIP/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /BLIP/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/LICENSE.txt -------------------------------------------------------------------------------- /BLIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/README.md -------------------------------------------------------------------------------- /BLIP/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/SECURITY.md -------------------------------------------------------------------------------- /BLIP/cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/cog.yaml -------------------------------------------------------------------------------- /BLIP/configs/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/bert_config.json -------------------------------------------------------------------------------- /BLIP/configs/caption_coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/caption_coco.yaml -------------------------------------------------------------------------------- /BLIP/configs/med_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/med_config.json -------------------------------------------------------------------------------- /BLIP/configs/nlvr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/nlvr.yaml -------------------------------------------------------------------------------- /BLIP/configs/nocaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/nocaps.yaml -------------------------------------------------------------------------------- /BLIP/configs/pretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/pretrain.yaml -------------------------------------------------------------------------------- /BLIP/configs/retrieval_coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/retrieval_coco.yaml -------------------------------------------------------------------------------- /BLIP/configs/retrieval_flickr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/retrieval_flickr.yaml -------------------------------------------------------------------------------- /BLIP/configs/retrieval_msrvtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/retrieval_msrvtt.yaml -------------------------------------------------------------------------------- /BLIP/configs/vqa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/configs/vqa.yaml -------------------------------------------------------------------------------- /BLIP/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/demo.ipynb -------------------------------------------------------------------------------- /BLIP/eval_nocaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/eval_nocaps.py -------------------------------------------------------------------------------- /BLIP/eval_retrieval_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/eval_retrieval_video.py -------------------------------------------------------------------------------- /BLIP/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BLIP/models/blip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/blip.py -------------------------------------------------------------------------------- /BLIP/models/blip_itm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/blip_itm.py -------------------------------------------------------------------------------- /BLIP/models/blip_nlvr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/blip_nlvr.py -------------------------------------------------------------------------------- /BLIP/models/blip_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/blip_pretrain.py -------------------------------------------------------------------------------- /BLIP/models/blip_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/blip_retrieval.py -------------------------------------------------------------------------------- /BLIP/models/blip_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/blip_vqa.py -------------------------------------------------------------------------------- /BLIP/models/med.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/med.py -------------------------------------------------------------------------------- /BLIP/models/nlvr_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/nlvr_encoder.py -------------------------------------------------------------------------------- /BLIP/models/vit-Mengcheng的MacBook Air.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/vit-Mengcheng的MacBook Air.py -------------------------------------------------------------------------------- /BLIP/models/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/models/vit.py -------------------------------------------------------------------------------- /BLIP/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/predict.py -------------------------------------------------------------------------------- /BLIP/pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/pretrain.py -------------------------------------------------------------------------------- /BLIP/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/requirements.txt -------------------------------------------------------------------------------- /BLIP/train_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/train_caption.py -------------------------------------------------------------------------------- /BLIP/train_nlvr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/train_nlvr.py -------------------------------------------------------------------------------- /BLIP/train_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/train_retrieval.py -------------------------------------------------------------------------------- /BLIP/train_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/train_vqa.py -------------------------------------------------------------------------------- /BLIP/transform/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/transform/randaugment.py -------------------------------------------------------------------------------- /BLIP/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/BLIP/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/README.md -------------------------------------------------------------------------------- /configs/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/base_config.py -------------------------------------------------------------------------------- /configs/cfg_chn6-cug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_chn6-cug.py -------------------------------------------------------------------------------- /configs/cfg_ddhrnet_korea_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_ddhrnet_korea_sar.py -------------------------------------------------------------------------------- /configs/cfg_ddhrnet_shandong_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_ddhrnet_shandong_sar.py -------------------------------------------------------------------------------- /configs/cfg_ddhrnet_xian_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_ddhrnet_xian_sar.py -------------------------------------------------------------------------------- /configs/cfg_deepglobe_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_deepglobe_road.py -------------------------------------------------------------------------------- /configs/cfg_fusar_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_fusar_sar.py -------------------------------------------------------------------------------- /configs/cfg_hrsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_hrsid.py -------------------------------------------------------------------------------- /configs/cfg_iSAID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_iSAID.py -------------------------------------------------------------------------------- /configs/cfg_inria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_inria.py -------------------------------------------------------------------------------- /configs/cfg_loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_loveda.py -------------------------------------------------------------------------------- /configs/cfg_massachusetts_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_massachusetts_road.py -------------------------------------------------------------------------------- /configs/cfg_openearthmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_openearthmap.py -------------------------------------------------------------------------------- /configs/cfg_openearthmap_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_openearthmap_sar.py -------------------------------------------------------------------------------- /configs/cfg_pie_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_pie_sar.py -------------------------------------------------------------------------------- /configs/cfg_potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_potsdam.py -------------------------------------------------------------------------------- /configs/cfg_spacenet_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_spacenet_road.py -------------------------------------------------------------------------------- /configs/cfg_uavid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_uavid.py -------------------------------------------------------------------------------- /configs/cfg_udd5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_udd5.py -------------------------------------------------------------------------------- /configs/cfg_vaihingen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_vaihingen.py -------------------------------------------------------------------------------- /configs/cfg_vdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_vdd.py -------------------------------------------------------------------------------- /configs/cfg_wbs-si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_wbs-si.py -------------------------------------------------------------------------------- /configs/cfg_whu_aerial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_whu_aerial.py -------------------------------------------------------------------------------- /configs/cfg_whu_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_whu_sar.py -------------------------------------------------------------------------------- /configs/cfg_whu_sat_II.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_whu_sat_II.py -------------------------------------------------------------------------------- /configs/cfg_xBD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_xBD.py -------------------------------------------------------------------------------- /configs/cfg_yeseg_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cfg_yeseg_sar.py -------------------------------------------------------------------------------- /configs/cls_chn6-cug.txt: -------------------------------------------------------------------------------- 1 | background 2 | road -------------------------------------------------------------------------------- /configs/cls_ddhrnet_korea_sar.txt: -------------------------------------------------------------------------------- 1 | building 2 | road 3 | greenery 4 | water 5 | farmland,grass -------------------------------------------------------------------------------- /configs/cls_ddhrnet_shandong_sar.txt: -------------------------------------------------------------------------------- 1 | farmland,grass 2 | greenery 3 | road 4 | building 5 | water -------------------------------------------------------------------------------- /configs/cls_ddhrnet_xian_sar.txt: -------------------------------------------------------------------------------- 1 | building 2 | road 3 | farmland,grass 4 | greenery 5 | water -------------------------------------------------------------------------------- /configs/cls_deepglobe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_deepglobe.txt -------------------------------------------------------------------------------- /configs/cls_fusar.txt: -------------------------------------------------------------------------------- 1 | others 2 | water 3 | road 4 | building 5 | grass -------------------------------------------------------------------------------- /configs/cls_hrsid.txt: -------------------------------------------------------------------------------- 1 | background 2 | ship,boat -------------------------------------------------------------------------------- /configs/cls_iSAID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_iSAID.txt -------------------------------------------------------------------------------- /configs/cls_inria.txt: -------------------------------------------------------------------------------- 1 | background 2 | building -------------------------------------------------------------------------------- /configs/cls_loveda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_loveda.txt -------------------------------------------------------------------------------- /configs/cls_massachusetts_building.txt: -------------------------------------------------------------------------------- 1 | background 2 | building -------------------------------------------------------------------------------- /configs/cls_openearthmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_openearthmap.txt -------------------------------------------------------------------------------- /configs/cls_openearthmap_sar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_openearthmap_sar.txt -------------------------------------------------------------------------------- /configs/cls_pie_sar.txt: -------------------------------------------------------------------------------- 1 | background 2 | city 3 | road 4 | water,river 5 | forest 6 | cropland -------------------------------------------------------------------------------- /configs/cls_potsdam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_potsdam.txt -------------------------------------------------------------------------------- /configs/cls_roadval.txt: -------------------------------------------------------------------------------- 1 | background 2 | road -------------------------------------------------------------------------------- /configs/cls_uavid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_uavid.txt -------------------------------------------------------------------------------- /configs/cls_udd5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_udd5.txt -------------------------------------------------------------------------------- /configs/cls_vaihingen.txt: -------------------------------------------------------------------------------- 1 | road 2 | building 3 | grass 4 | tree 5 | car 6 | clutter -------------------------------------------------------------------------------- /configs/cls_vdd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_vdd.txt -------------------------------------------------------------------------------- /configs/cls_wbs-si.txt: -------------------------------------------------------------------------------- 1 | background 2 | water -------------------------------------------------------------------------------- /configs/cls_whu.txt: -------------------------------------------------------------------------------- 1 | background 2 | building -------------------------------------------------------------------------------- /configs/cls_whu_sar.txt: -------------------------------------------------------------------------------- 1 | farmland 2 | city 3 | village 4 | water 5 | forest 6 | road 7 | others -------------------------------------------------------------------------------- /configs/cls_xBD.txt: -------------------------------------------------------------------------------- 1 | background 2 | building -------------------------------------------------------------------------------- /configs/cls_yeseg_sar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/configs/cls_yeseg_sar.txt -------------------------------------------------------------------------------- /configs/my_name.txt: -------------------------------------------------------------------------------- 1 | building 2 | road 3 | greenery 4 | water 5 | farmland,grass -------------------------------------------------------------------------------- /custom_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/custom_datasets.py -------------------------------------------------------------------------------- /dataset_prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/dataset_prepare.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/demo.py -------------------------------------------------------------------------------- /demo/oem_koeln_50.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/demo/oem_koeln_50.tif -------------------------------------------------------------------------------- /dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/dist_test.sh -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/eval.py -------------------------------------------------------------------------------- /eval_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/eval_all.py -------------------------------------------------------------------------------- /gem/__init__.py: -------------------------------------------------------------------------------- 1 | from .gem import * 2 | -------------------------------------------------------------------------------- /gem/gem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/gem/gem.py -------------------------------------------------------------------------------- /gem/gem_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/gem/gem_utils.py -------------------------------------------------------------------------------- /gem/gem_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/gem/gem_wrapper.py -------------------------------------------------------------------------------- /open_clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/__init__.py -------------------------------------------------------------------------------- /open_clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /open_clip/coca_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/coca_model.py -------------------------------------------------------------------------------- /open_clip/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/constants.py -------------------------------------------------------------------------------- /open_clip/eva_clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/__init__.py -------------------------------------------------------------------------------- /open_clip/eva_clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /open_clip/eva_clip/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/constants.py -------------------------------------------------------------------------------- /open_clip/eva_clip/eva_vit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/eva_vit_model.py -------------------------------------------------------------------------------- /open_clip/eva_clip/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/factory.py -------------------------------------------------------------------------------- /open_clip/eva_clip/hf_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/hf_configs.py -------------------------------------------------------------------------------- /open_clip/eva_clip/hf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/hf_model.py -------------------------------------------------------------------------------- /open_clip/eva_clip/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/loss.py -------------------------------------------------------------------------------- /open_clip/eva_clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model.py -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA01-CLIP-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA01-CLIP-B-16.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA01-CLIP-g-14-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA01-CLIP-g-14-plus.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA01-CLIP-g-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA01-CLIP-g-14.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA02-CLIP-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA02-CLIP-B-16.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA02-CLIP-L-14-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA02-CLIP-L-14-336.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA02-CLIP-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA02-CLIP-L-14.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA02-CLIP-bigE-14-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA02-CLIP-bigE-14-plus.json -------------------------------------------------------------------------------- /open_clip/eva_clip/model_configs/EVA02-CLIP-bigE-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/model_configs/EVA02-CLIP-bigE-14.json -------------------------------------------------------------------------------- /open_clip/eva_clip/modified_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/modified_resnet.py -------------------------------------------------------------------------------- /open_clip/eva_clip/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/openai.py -------------------------------------------------------------------------------- /open_clip/eva_clip/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/pretrained.py -------------------------------------------------------------------------------- /open_clip/eva_clip/rope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/rope.py -------------------------------------------------------------------------------- /open_clip/eva_clip/timm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/timm_model.py -------------------------------------------------------------------------------- /open_clip/eva_clip/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/tokenizer.py -------------------------------------------------------------------------------- /open_clip/eva_clip/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/transform.py -------------------------------------------------------------------------------- /open_clip/eva_clip/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/transformer.py -------------------------------------------------------------------------------- /open_clip/eva_clip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/eva_clip/utils.py -------------------------------------------------------------------------------- /open_clip/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/factory.py -------------------------------------------------------------------------------- /open_clip/hf_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/hf_configs.py -------------------------------------------------------------------------------- /open_clip/hf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/hf_model.py -------------------------------------------------------------------------------- /open_clip/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/loss.py -------------------------------------------------------------------------------- /open_clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model.py -------------------------------------------------------------------------------- /open_clip/model_configs/EVA01-g-14-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA01-g-14-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA01-g-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA01-g-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA02-B-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-E-14-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA02-E-14-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-E-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA02-E-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-L-14-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA02-L-14-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/EVA02-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/EVA02-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-384.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-512.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP-i18n-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-SigLIP-i18n-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-SigLIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-SigLIP.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-plus-240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-plus-240.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-plus.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-32-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-plus-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-32-plus-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-32-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-378-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-H-14-378-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-CLIPA-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-H-14-CLIPA-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-CLIPA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-H-14-CLIPA.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-H-14-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-H-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-H-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-H-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-14-280.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-14-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-CLIPA-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-14-CLIPA-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-CLIPA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-14-CLIPA.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14-quickgelu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-14-quickgelu.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-16-320.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-SigLIP-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-16-SigLIP-256.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16-SigLIP-384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-16-SigLIP-384.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-L-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-L-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-16-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-M-16-alt.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-M-16.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-32-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-M-32-alt.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-M-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-M-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-bigG-14-CLIPA-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-bigG-14-CLIPA-336.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-bigG-14-CLIPA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-bigG-14-CLIPA.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-bigG-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-bigG-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-e-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-e-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/ViT-g-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/ViT-g-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/coca_ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_ViT-L-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/coca_ViT-L-14.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/coca_base.json -------------------------------------------------------------------------------- /open_clip/model_configs/coca_roberta-ViT-B-32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/coca_roberta-ViT-B-32.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_base.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_base_w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_base_w.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_base_w_320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_base_w_320.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_large.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_large_d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_large_d.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_large_d_320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_large_d_320.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_small.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_tiny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_tiny.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_xlarge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_xlarge.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_xxlarge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_xxlarge.json -------------------------------------------------------------------------------- /open_clip/model_configs/convnext_xxlarge_320.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/model_configs/convnext_xxlarge_320.json -------------------------------------------------------------------------------- /open_clip/modified_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/modified_resnet.py -------------------------------------------------------------------------------- /open_clip/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/openai.py -------------------------------------------------------------------------------- /open_clip/pos_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/pos_embed.py -------------------------------------------------------------------------------- /open_clip/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/pretrained.py -------------------------------------------------------------------------------- /open_clip/push_to_hf_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/push_to_hf_hub.py -------------------------------------------------------------------------------- /open_clip/timm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/timm_model.py -------------------------------------------------------------------------------- /open_clip/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/tokenizer.py -------------------------------------------------------------------------------- /open_clip/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/transform.py -------------------------------------------------------------------------------- /open_clip/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/transformer.py -------------------------------------------------------------------------------- /open_clip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/utils.py -------------------------------------------------------------------------------- /open_clip/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.24.0' 2 | -------------------------------------------------------------------------------- /open_clip/zero_shot_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/zero_shot_classifier.py -------------------------------------------------------------------------------- /open_clip/zero_shot_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/open_clip/zero_shot_metadata.py -------------------------------------------------------------------------------- /prompts/imagenet_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/prompts/imagenet_template.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/requirements.txt -------------------------------------------------------------------------------- /segearth_segmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/segearth_segmentor.py -------------------------------------------------------------------------------- /simfeatup_dev/upsamplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/simfeatup_dev/upsamplers.py -------------------------------------------------------------------------------- /simfeatup_dev/weights/clip_jbu_stack_cocostuff.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/simfeatup_dev/weights/clip_jbu_stack_cocostuff.ckpt -------------------------------------------------------------------------------- /simfeatup_dev/weights/maskclip_jbu_stack_cocostuff.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/simfeatup_dev/weights/maskclip_jbu_stack_cocostuff.ckpt -------------------------------------------------------------------------------- /simfeatup_dev/weights/xclip_jbu_one_million_aid.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/simfeatup_dev/weights/xclip_jbu_one_million_aid.ckpt -------------------------------------------------------------------------------- /tools/dataset_converters/chn6-cug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/chn6-cug.py -------------------------------------------------------------------------------- /tools/dataset_converters/deepglobe_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/deepglobe_road.py -------------------------------------------------------------------------------- /tools/dataset_converters/inria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/inria.py -------------------------------------------------------------------------------- /tools/dataset_converters/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/isaid.py -------------------------------------------------------------------------------- /tools/dataset_converters/loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/loveda.py -------------------------------------------------------------------------------- /tools/dataset_converters/openearthmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/openearthmap.py -------------------------------------------------------------------------------- /tools/dataset_converters/potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/potsdam.py -------------------------------------------------------------------------------- /tools/dataset_converters/roadval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/roadval.py -------------------------------------------------------------------------------- /tools/dataset_converters/uavid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/uavid.py -------------------------------------------------------------------------------- /tools/dataset_converters/vaihingen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/vaihingen.py -------------------------------------------------------------------------------- /tools/dataset_converters/wbs-si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/wbs-si.py -------------------------------------------------------------------------------- /tools/dataset_converters/wbs-si_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/wbs-si_val.txt -------------------------------------------------------------------------------- /tools/dataset_converters/whu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/whu.py -------------------------------------------------------------------------------- /tools/dataset_converters/xBD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/tools/dataset_converters/xBD.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earth-insights/SegEarth-OV-2/HEAD/utils.py --------------------------------------------------------------------------------