├── .gitignore ├── LICENSE ├── README.md ├── README_zh-CN.md ├── configs_RSRefSeg ├── RSRefSeg-b.py └── RSRefSeg-l.py ├── datainfo ├── rrsisd_test.jsonl ├── rrsisd_train.jsonl └── rrsisd_val.jsonl ├── demo ├── MMSegmentation_Tutorial.ipynb ├── classroom__rgb_00283.jpg ├── demo.png ├── image_demo.py ├── image_demo_with_inferencer.py ├── inference_demo.ipynb ├── rs_image_inference.py └── video_demo.py ├── mmseg ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── mmseg_inferencer.py │ ├── remote_sense_inferencer.py │ └── utils.py ├── configs │ └── _base_ │ │ ├── datasets │ │ ├── loveda.py │ │ └── potsdam.py │ │ ├── default_runtime.py │ │ └── schedules │ │ ├── schedule_160k.py │ │ ├── schedule_20k.py │ │ ├── schedule_240k.py │ │ ├── schedule_25k.py │ │ ├── schedule_320k.py │ │ ├── schedule_40k.py │ │ └── schedule_80k.py ├── datasets │ ├── __init__.py │ ├── ade.py │ ├── basesegdataset.py │ ├── bdd100k.py │ ├── chase_db1.py │ ├── cityscapes.py │ ├── coco_stuff.py │ ├── dark_zurich.py │ ├── dataset_wrappers.py │ ├── decathlon.py │ ├── drive.py │ ├── dsdl.py │ ├── hrf.py │ ├── hsi_drive.py │ ├── isaid.py │ ├── isprs.py │ ├── levir.py │ ├── lip.py │ ├── loveda.py │ ├── mapillary.py │ ├── night_driving.py │ ├── nyu.py │ ├── pascal_context.py │ ├── potsdam.py │ ├── refuge.py │ ├── stare.py │ ├── synapse.py │ ├── transforms │ │ ├── __init__.py │ │ ├── formatting.py │ │ ├── loading.py │ │ └── transforms.py │ └── voc.py ├── engine │ ├── __init__.py │ ├── hooks │ │ ├── __init__.py │ │ └── visualization_hook.py │ ├── optimizers │ │ ├── __init__.py │ │ ├── force_default_constructor.py │ │ └── layer_decay_optimizer_constructor.py │ └── schedulers │ │ ├── __init__.py │ │ └── poly_ratio_scheduler.py ├── evaluation │ ├── __init__.py │ └── metrics │ │ ├── __init__.py │ │ ├── citys_metric.py │ │ ├── depth_metric.py │ │ └── iou_metric.py ├── models │ ├── __init__.py │ ├── assigners │ │ ├── __init__.py │ │ ├── base_assigner.py │ │ ├── hungarian_assigner.py │ │ └── match_cost.py │ ├── backbones │ │ ├── __init__.py │ │ ├── beit.py │ │ ├── bisenetv1.py │ │ ├── bisenetv2.py │ │ ├── cgnet.py │ │ ├── ddrnet.py │ │ ├── erfnet.py │ │ ├── fast_scnn.py │ │ ├── hrnet.py │ │ ├── icnet.py │ │ ├── mae.py │ │ ├── mit.py │ │ ├── mobilenet_v2.py │ │ ├── mobilenet_v3.py │ │ ├── mscan.py │ │ ├── pidnet.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ ├── stdc.py │ │ ├── swin.py │ │ ├── timm_backbone.py │ │ ├── twins.py │ │ ├── unet.py │ │ ├── vit.py │ │ └── vpd.py │ ├── builder.py │ ├── data_preprocessor.py │ ├── decode_heads │ │ ├── __init__.py │ │ ├── ann_head.py │ │ ├── apc_head.py │ │ ├── aspp_head.py │ │ ├── cascade_decode_head.py │ │ ├── cc_head.py │ │ ├── da_head.py │ │ ├── ddr_head.py │ │ ├── decode_head.py │ │ ├── dm_head.py │ │ ├── dnl_head.py │ │ ├── dpt_head.py │ │ ├── ema_head.py │ │ ├── enc_head.py │ │ ├── fcn_head.py │ │ ├── fpn_head.py │ │ ├── gc_head.py │ │ ├── ham_head.py │ │ ├── isa_head.py │ │ ├── knet_head.py │ │ ├── lraspp_head.py │ │ ├── mask2former_head.py │ │ ├── maskformer_head.py │ │ ├── nl_head.py │ │ ├── ocr_head.py │ │ ├── pid_head.py │ │ ├── point_head.py │ │ ├── psa_head.py │ │ ├── psp_head.py │ │ ├── san_head.py │ │ ├── segformer_head.py │ │ ├── segmenter_mask_head.py │ │ ├── sep_aspp_head.py │ │ ├── sep_fcn_head.py │ │ ├── setr_mla_head.py │ │ ├── setr_up_head.py │ │ ├── stdc_head.py │ │ ├── uper_head.py │ │ └── vpd_depth_head.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── boundary_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── dice_loss.py │ │ ├── focal_loss.py │ │ ├── huasdorff_distance_loss.py │ │ ├── kldiv_loss.py │ │ ├── lovasz_loss.py │ │ ├── ohem_cross_entropy_loss.py │ │ ├── silog_loss.py │ │ ├── tversky_loss.py │ │ └── utils.py │ ├── necks │ │ ├── __init__.py │ │ ├── featurepyramid.py │ │ ├── fpn.py │ │ ├── ic_neck.py │ │ ├── jpu.py │ │ ├── mla_neck.py │ │ └── multilevel_neck.py │ ├── segmentors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cascade_encoder_decoder.py │ │ ├── depth_estimator.py │ │ ├── encoder_decoder.py │ │ ├── multimodal_encoder_decoder.py │ │ └── seg_tta.py │ ├── text_encoder │ │ ├── __init__.py │ │ └── clip_text_encoder.py │ └── utils │ │ ├── __init__.py │ │ ├── basic_block.py │ │ ├── embed.py │ │ ├── encoding.py │ │ ├── inverted_residual.py │ │ ├── make_divisible.py │ │ ├── point_sample.py │ │ ├── ppm.py │ │ ├── res_layer.py │ │ ├── san_layers.py │ │ ├── se_layer.py │ │ ├── self_attention_block.py │ │ ├── shape_convert.py │ │ ├── up_conv_block.py │ │ └── wrappers.py ├── registry │ ├── __init__.py │ └── registry.py ├── structures │ ├── __init__.py │ ├── sampler │ │ ├── __init__.py │ │ ├── base_pixel_sampler.py │ │ ├── builder.py │ │ └── ohem_pixel_sampler.py │ └── seg_data_sample.py ├── utils │ ├── __init__.py │ ├── bpe_simple_vocab_16e6.txt.gz │ ├── class_names.py │ ├── collect_env.py │ ├── get_templates.py │ ├── io.py │ ├── mask_classification.py │ ├── misc.py │ ├── set_env.py │ ├── tokenizer.py │ └── typing_utils.py ├── version.py └── visualization │ ├── __init__.py │ └── local_visualizer.py ├── resources ├── RSRefSeg.pdf └── RSRefSeg.png ├── rsris ├── __init__.py ├── datasets │ └── refdataset.py ├── evaluation │ ├── __init__.py │ └── metrics │ │ ├── __init__.py │ │ └── iou_metrics.py └── models │ └── models.py ├── tools ├── analysis_tools │ ├── analyze_logs.py │ ├── benchmark.py │ ├── browse_dataset.py │ ├── confusion_matrix.py │ ├── get_flops.py │ └── visualization_cam.py ├── dataset_converters │ ├── chase_db1.py │ ├── cityscapes.py │ ├── coco_stuff10k.py │ ├── coco_stuff164k.py │ ├── drive.py │ ├── hrf.py │ ├── isaid.py │ ├── levircd.py │ ├── loveda.py │ ├── nyu.py │ ├── pascal_context.py │ ├── potsdam.py │ ├── refuge.py │ ├── stare.py │ ├── synapse.py │ ├── vaihingen.py │ └── voc_aug.py ├── deployment │ └── pytorch2torchscript.py ├── dist_test.sh ├── dist_train.sh ├── misc │ ├── browse_dataset.py │ ├── print_config.py │ └── publish_model.py ├── model_converters │ ├── beit2mmseg.py │ ├── clip2mmseg.py │ ├── mit2mmseg.py │ ├── san2mmseg.py │ ├── stdc2mmseg.py │ ├── swin2mmseg.py │ ├── twins2mmseg.py │ ├── vit2mmseg.py │ └── vitjax2mmseg.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py ├── torchserve │ ├── mmseg2torchserve.py │ ├── mmseg_handler.py │ └── test_torchserve.py └── train.py └── tools_RSRefSeg ├── convert_data_to_jsonl.py ├── deepspeed_ckpt_to_torch_ckpt.py ├── ground_truth_visualization.py ├── hack_registry.py └── pre_download_ckpt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /configs_RSRefSeg/RSRefSeg-b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/configs_RSRefSeg/RSRefSeg-b.py -------------------------------------------------------------------------------- /configs_RSRefSeg/RSRefSeg-l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/configs_RSRefSeg/RSRefSeg-l.py -------------------------------------------------------------------------------- /datainfo/rrsisd_test.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/datainfo/rrsisd_test.jsonl -------------------------------------------------------------------------------- /datainfo/rrsisd_train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/datainfo/rrsisd_train.jsonl -------------------------------------------------------------------------------- /datainfo/rrsisd_val.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/datainfo/rrsisd_val.jsonl -------------------------------------------------------------------------------- /demo/MMSegmentation_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/MMSegmentation_Tutorial.ipynb -------------------------------------------------------------------------------- /demo/classroom__rgb_00283.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/classroom__rgb_00283.jpg -------------------------------------------------------------------------------- /demo/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/demo.png -------------------------------------------------------------------------------- /demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/image_demo.py -------------------------------------------------------------------------------- /demo/image_demo_with_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/image_demo_with_inferencer.py -------------------------------------------------------------------------------- /demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /demo/rs_image_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/rs_image_inference.py -------------------------------------------------------------------------------- /demo/video_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/demo/video_demo.py -------------------------------------------------------------------------------- /mmseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/__init__.py -------------------------------------------------------------------------------- /mmseg/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/apis/__init__.py -------------------------------------------------------------------------------- /mmseg/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/apis/inference.py -------------------------------------------------------------------------------- /mmseg/apis/mmseg_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/apis/mmseg_inferencer.py -------------------------------------------------------------------------------- /mmseg/apis/remote_sense_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/apis/remote_sense_inferencer.py -------------------------------------------------------------------------------- /mmseg/apis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/apis/utils.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/datasets/loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/datasets/loveda.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/datasets/potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/datasets/potsdam.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_160k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_160k.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_20k.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_240k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_240k.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_25k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_25k.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_320k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_320k.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_40k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_40k.py -------------------------------------------------------------------------------- /mmseg/configs/_base_/schedules/schedule_80k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/configs/_base_/schedules/schedule_80k.py -------------------------------------------------------------------------------- /mmseg/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/__init__.py -------------------------------------------------------------------------------- /mmseg/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/ade.py -------------------------------------------------------------------------------- /mmseg/datasets/basesegdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/basesegdataset.py -------------------------------------------------------------------------------- /mmseg/datasets/bdd100k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/bdd100k.py -------------------------------------------------------------------------------- /mmseg/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/chase_db1.py -------------------------------------------------------------------------------- /mmseg/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmseg/datasets/coco_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/coco_stuff.py -------------------------------------------------------------------------------- /mmseg/datasets/dark_zurich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/dark_zurich.py -------------------------------------------------------------------------------- /mmseg/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmseg/datasets/decathlon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/decathlon.py -------------------------------------------------------------------------------- /mmseg/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/drive.py -------------------------------------------------------------------------------- /mmseg/datasets/dsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/dsdl.py -------------------------------------------------------------------------------- /mmseg/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/hrf.py -------------------------------------------------------------------------------- /mmseg/datasets/hsi_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/hsi_drive.py -------------------------------------------------------------------------------- /mmseg/datasets/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/isaid.py -------------------------------------------------------------------------------- /mmseg/datasets/isprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/isprs.py -------------------------------------------------------------------------------- /mmseg/datasets/levir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/levir.py -------------------------------------------------------------------------------- /mmseg/datasets/lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/lip.py -------------------------------------------------------------------------------- /mmseg/datasets/loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/loveda.py -------------------------------------------------------------------------------- /mmseg/datasets/mapillary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/mapillary.py -------------------------------------------------------------------------------- /mmseg/datasets/night_driving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/night_driving.py -------------------------------------------------------------------------------- /mmseg/datasets/nyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/nyu.py -------------------------------------------------------------------------------- /mmseg/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/pascal_context.py -------------------------------------------------------------------------------- /mmseg/datasets/potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/potsdam.py -------------------------------------------------------------------------------- /mmseg/datasets/refuge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/refuge.py -------------------------------------------------------------------------------- /mmseg/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/stare.py -------------------------------------------------------------------------------- /mmseg/datasets/synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/synapse.py -------------------------------------------------------------------------------- /mmseg/datasets/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/transforms/__init__.py -------------------------------------------------------------------------------- /mmseg/datasets/transforms/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/transforms/formatting.py -------------------------------------------------------------------------------- /mmseg/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/transforms/loading.py -------------------------------------------------------------------------------- /mmseg/datasets/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/transforms/transforms.py -------------------------------------------------------------------------------- /mmseg/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/datasets/voc.py -------------------------------------------------------------------------------- /mmseg/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/__init__.py -------------------------------------------------------------------------------- /mmseg/engine/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/hooks/__init__.py -------------------------------------------------------------------------------- /mmseg/engine/hooks/visualization_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/hooks/visualization_hook.py -------------------------------------------------------------------------------- /mmseg/engine/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/optimizers/__init__.py -------------------------------------------------------------------------------- /mmseg/engine/optimizers/force_default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/optimizers/force_default_constructor.py -------------------------------------------------------------------------------- /mmseg/engine/optimizers/layer_decay_optimizer_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/optimizers/layer_decay_optimizer_constructor.py -------------------------------------------------------------------------------- /mmseg/engine/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/schedulers/__init__.py -------------------------------------------------------------------------------- /mmseg/engine/schedulers/poly_ratio_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/engine/schedulers/poly_ratio_scheduler.py -------------------------------------------------------------------------------- /mmseg/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/evaluation/__init__.py -------------------------------------------------------------------------------- /mmseg/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /mmseg/evaluation/metrics/citys_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/evaluation/metrics/citys_metric.py -------------------------------------------------------------------------------- /mmseg/evaluation/metrics/depth_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/evaluation/metrics/depth_metric.py -------------------------------------------------------------------------------- /mmseg/evaluation/metrics/iou_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/evaluation/metrics/iou_metric.py -------------------------------------------------------------------------------- /mmseg/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/__init__.py -------------------------------------------------------------------------------- /mmseg/models/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/assigners/__init__.py -------------------------------------------------------------------------------- /mmseg/models/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmseg/models/assigners/hungarian_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/assigners/hungarian_assigner.py -------------------------------------------------------------------------------- /mmseg/models/assigners/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/assigners/match_cost.py -------------------------------------------------------------------------------- /mmseg/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmseg/models/backbones/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/beit.py -------------------------------------------------------------------------------- /mmseg/models/backbones/bisenetv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/bisenetv1.py -------------------------------------------------------------------------------- /mmseg/models/backbones/bisenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/bisenetv2.py -------------------------------------------------------------------------------- /mmseg/models/backbones/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/cgnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/ddrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/ddrnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/erfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/erfnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/fast_scnn.py -------------------------------------------------------------------------------- /mmseg/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/icnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/icnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/mae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/mae.py -------------------------------------------------------------------------------- /mmseg/models/backbones/mit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/mit.py -------------------------------------------------------------------------------- /mmseg/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmseg/models/backbones/mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/mobilenet_v3.py -------------------------------------------------------------------------------- /mmseg/models/backbones/mscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/mscan.py -------------------------------------------------------------------------------- /mmseg/models/backbones/pidnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/pidnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmseg/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmseg/models/backbones/stdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/stdc.py -------------------------------------------------------------------------------- /mmseg/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/swin.py -------------------------------------------------------------------------------- /mmseg/models/backbones/timm_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/timm_backbone.py -------------------------------------------------------------------------------- /mmseg/models/backbones/twins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/twins.py -------------------------------------------------------------------------------- /mmseg/models/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/unet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/vit.py -------------------------------------------------------------------------------- /mmseg/models/backbones/vpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/backbones/vpd.py -------------------------------------------------------------------------------- /mmseg/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/builder.py -------------------------------------------------------------------------------- /mmseg/models/data_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/data_preprocessor.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/__init__.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ann_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/ann_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/apc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/apc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/aspp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/cascade_decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/cascade_decode_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/cc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/cc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/da_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/da_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ddr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/ddr_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/decode_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/dm_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/dm_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/dnl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/dnl_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/dpt_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/dpt_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ema_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/ema_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/enc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/enc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/fcn_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/fpn_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/gc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/gc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ham_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/ham_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/isa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/isa_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/knet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/knet_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/lraspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/lraspp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/mask2former_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/mask2former_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/maskformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/maskformer_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/nl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/nl_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/ocr_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/pid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/pid_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/point_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/psa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/psa_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/psp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/psp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/san_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/san_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/segformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/segformer_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/segmenter_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/segmenter_mask_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/sep_aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/sep_aspp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/sep_fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/sep_fcn_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/setr_mla_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/setr_mla_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/setr_up_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/setr_up_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/stdc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/stdc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/uper_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/uper_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/vpd_depth_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/decode_heads/vpd_depth_head.py -------------------------------------------------------------------------------- /mmseg/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/__init__.py -------------------------------------------------------------------------------- /mmseg/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmseg/models/losses/boundary_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/boundary_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/huasdorff_distance_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/huasdorff_distance_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/kldiv_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/kldiv_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/lovasz_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/lovasz_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/ohem_cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/ohem_cross_entropy_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/silog_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/silog_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/tversky_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/tversky_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/losses/utils.py -------------------------------------------------------------------------------- /mmseg/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/__init__.py -------------------------------------------------------------------------------- /mmseg/models/necks/featurepyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/featurepyramid.py -------------------------------------------------------------------------------- /mmseg/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/fpn.py -------------------------------------------------------------------------------- /mmseg/models/necks/ic_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/ic_neck.py -------------------------------------------------------------------------------- /mmseg/models/necks/jpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/jpu.py -------------------------------------------------------------------------------- /mmseg/models/necks/mla_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/mla_neck.py -------------------------------------------------------------------------------- /mmseg/models/necks/multilevel_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/necks/multilevel_neck.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/__init__.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/base.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/cascade_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/cascade_encoder_decoder.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/depth_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/depth_estimator.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/encoder_decoder.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/multimodal_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/multimodal_encoder_decoder.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/seg_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/segmentors/seg_tta.py -------------------------------------------------------------------------------- /mmseg/models/text_encoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/text_encoder/__init__.py -------------------------------------------------------------------------------- /mmseg/models/text_encoder/clip_text_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/text_encoder/clip_text_encoder.py -------------------------------------------------------------------------------- /mmseg/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/__init__.py -------------------------------------------------------------------------------- /mmseg/models/utils/basic_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/basic_block.py -------------------------------------------------------------------------------- /mmseg/models/utils/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/embed.py -------------------------------------------------------------------------------- /mmseg/models/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/encoding.py -------------------------------------------------------------------------------- /mmseg/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /mmseg/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmseg/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/point_sample.py -------------------------------------------------------------------------------- /mmseg/models/utils/ppm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/ppm.py -------------------------------------------------------------------------------- /mmseg/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmseg/models/utils/san_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/san_layers.py -------------------------------------------------------------------------------- /mmseg/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/se_layer.py -------------------------------------------------------------------------------- /mmseg/models/utils/self_attention_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/self_attention_block.py -------------------------------------------------------------------------------- /mmseg/models/utils/shape_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/shape_convert.py -------------------------------------------------------------------------------- /mmseg/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /mmseg/models/utils/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/models/utils/wrappers.py -------------------------------------------------------------------------------- /mmseg/registry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/registry/__init__.py -------------------------------------------------------------------------------- /mmseg/registry/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/registry/registry.py -------------------------------------------------------------------------------- /mmseg/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/structures/__init__.py -------------------------------------------------------------------------------- /mmseg/structures/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/structures/sampler/__init__.py -------------------------------------------------------------------------------- /mmseg/structures/sampler/base_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/structures/sampler/base_pixel_sampler.py -------------------------------------------------------------------------------- /mmseg/structures/sampler/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/structures/sampler/builder.py -------------------------------------------------------------------------------- /mmseg/structures/sampler/ohem_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/structures/sampler/ohem_pixel_sampler.py -------------------------------------------------------------------------------- /mmseg/structures/seg_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/structures/seg_data_sample.py -------------------------------------------------------------------------------- /mmseg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/__init__.py -------------------------------------------------------------------------------- /mmseg/utils/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /mmseg/utils/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/class_names.py -------------------------------------------------------------------------------- /mmseg/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/collect_env.py -------------------------------------------------------------------------------- /mmseg/utils/get_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/get_templates.py -------------------------------------------------------------------------------- /mmseg/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/io.py -------------------------------------------------------------------------------- /mmseg/utils/mask_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/mask_classification.py -------------------------------------------------------------------------------- /mmseg/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/misc.py -------------------------------------------------------------------------------- /mmseg/utils/set_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/set_env.py -------------------------------------------------------------------------------- /mmseg/utils/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/tokenizer.py -------------------------------------------------------------------------------- /mmseg/utils/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/utils/typing_utils.py -------------------------------------------------------------------------------- /mmseg/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/version.py -------------------------------------------------------------------------------- /mmseg/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/visualization/__init__.py -------------------------------------------------------------------------------- /mmseg/visualization/local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/mmseg/visualization/local_visualizer.py -------------------------------------------------------------------------------- /resources/RSRefSeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/resources/RSRefSeg.pdf -------------------------------------------------------------------------------- /resources/RSRefSeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/resources/RSRefSeg.png -------------------------------------------------------------------------------- /rsris/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/rsris/__init__.py -------------------------------------------------------------------------------- /rsris/datasets/refdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/rsris/datasets/refdataset.py -------------------------------------------------------------------------------- /rsris/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | from .metrics import * 2 | -------------------------------------------------------------------------------- /rsris/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | from .iou_metrics import * -------------------------------------------------------------------------------- /rsris/evaluation/metrics/iou_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/rsris/evaluation/metrics/iou_metrics.py -------------------------------------------------------------------------------- /rsris/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/rsris/models/models.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/analysis_tools/browse_dataset.py -------------------------------------------------------------------------------- /tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /tools/analysis_tools/visualization_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/analysis_tools/visualization_cam.py -------------------------------------------------------------------------------- /tools/dataset_converters/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/chase_db1.py -------------------------------------------------------------------------------- /tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /tools/dataset_converters/coco_stuff10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/coco_stuff10k.py -------------------------------------------------------------------------------- /tools/dataset_converters/coco_stuff164k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/coco_stuff164k.py -------------------------------------------------------------------------------- /tools/dataset_converters/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/drive.py -------------------------------------------------------------------------------- /tools/dataset_converters/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/hrf.py -------------------------------------------------------------------------------- /tools/dataset_converters/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/isaid.py -------------------------------------------------------------------------------- /tools/dataset_converters/levircd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/levircd.py -------------------------------------------------------------------------------- /tools/dataset_converters/loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/loveda.py -------------------------------------------------------------------------------- /tools/dataset_converters/nyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/nyu.py -------------------------------------------------------------------------------- /tools/dataset_converters/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/pascal_context.py -------------------------------------------------------------------------------- /tools/dataset_converters/potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/potsdam.py -------------------------------------------------------------------------------- /tools/dataset_converters/refuge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/refuge.py -------------------------------------------------------------------------------- /tools/dataset_converters/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/stare.py -------------------------------------------------------------------------------- /tools/dataset_converters/synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/synapse.py -------------------------------------------------------------------------------- /tools/dataset_converters/vaihingen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/vaihingen.py -------------------------------------------------------------------------------- /tools/dataset_converters/voc_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dataset_converters/voc_aug.py -------------------------------------------------------------------------------- /tools/deployment/pytorch2torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/deployment/pytorch2torchscript.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/misc/print_config.py -------------------------------------------------------------------------------- /tools/misc/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/misc/publish_model.py -------------------------------------------------------------------------------- /tools/model_converters/beit2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/beit2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/clip2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/clip2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/mit2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/mit2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/san2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/san2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/stdc2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/stdc2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/swin2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/swin2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/twins2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/twins2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/vit2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/vit2mmseg.py -------------------------------------------------------------------------------- /tools/model_converters/vitjax2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/model_converters/vitjax2mmseg.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/torchserve/mmseg2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/torchserve/mmseg2torchserve.py -------------------------------------------------------------------------------- /tools/torchserve/mmseg_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/torchserve/mmseg_handler.py -------------------------------------------------------------------------------- /tools/torchserve/test_torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/torchserve/test_torchserve.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools_RSRefSeg/convert_data_to_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools_RSRefSeg/convert_data_to_jsonl.py -------------------------------------------------------------------------------- /tools_RSRefSeg/deepspeed_ckpt_to_torch_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools_RSRefSeg/deepspeed_ckpt_to_torch_ckpt.py -------------------------------------------------------------------------------- /tools_RSRefSeg/ground_truth_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools_RSRefSeg/ground_truth_visualization.py -------------------------------------------------------------------------------- /tools_RSRefSeg/hack_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools_RSRefSeg/hack_registry.py -------------------------------------------------------------------------------- /tools_RSRefSeg/pre_download_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyanChen/RSRefSeg/HEAD/tools_RSRefSeg/pre_download_ckpt.py --------------------------------------------------------------------------------