├── LICENSE ├── README.md ├── __pycache__ └── engine.cpython-311.pyc ├── dataset ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-39.pyc │ ├── base_dataset.cpython-311.pyc │ ├── base_dataset.cpython-39.pyc │ ├── coco.cpython-311.pyc │ ├── coco.cpython-39.pyc │ ├── coco_ft.cpython-311.pyc │ ├── coco_ft.cpython-39.pyc │ ├── oem.cpython-311.pyc │ ├── oem.cpython-39.pyc │ ├── oem_ft.cpython-311.pyc │ ├── oem_ft.cpython-39.pyc │ ├── voc.cpython-311.pyc │ ├── voc.cpython-39.pyc │ ├── voc_ft.cpython-311.pyc │ └── voc_ft.cpython-39.pyc ├── base_dataset.py ├── list │ └── oem │ │ ├── all_5shot_seed123.txt │ │ ├── test.txt │ │ ├── train.txt │ │ └── val.txt ├── oem.py └── oem_ft.py ├── engine.py ├── eval_base.py ├── eval_ft.py ├── ft_pop.py ├── fusemat.py ├── gen_new_samples_for_new_class.py ├── get_list.py ├── loss ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-39.pyc │ ├── criterion.cpython-311.pyc │ └── criterion.cpython-39.pyc └── criterion.py ├── networks ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── __init__.cpython-39.pyc │ ├── convnext_pop.cpython-311.pyc │ ├── convnext_pop.cpython-39.pyc │ ├── deeplab_pop.cpython-311.pyc │ ├── deeplab_pop.cpython-39.pyc │ ├── lsk_pop.cpython-311.pyc │ ├── pspnet.cpython-311.pyc │ ├── pspnet.cpython-39.pyc │ ├── pspnet_pop.cpython-311.pyc │ ├── pspnet_pop.cpython-39.pyc │ ├── pspplus_pop.cpython-311.pyc │ ├── pspplus_pop.cpython-39.pyc │ ├── seghr_pop.cpython-311.pyc │ ├── seghr_pop.cpython-39.pyc │ ├── swin_pop.cpython-311.pyc │ ├── swin_pop.cpython-39.pyc │ ├── swinpspplus_pop.cpython-39.pyc │ ├── vggunet_pop.cpython-311.pyc │ └── vggunet_pop.cpython-39.pyc ├── backbones │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── convnext.cpython-311.pyc │ │ ├── convnext.cpython-39.pyc │ │ ├── hrnet.cpython-311.pyc │ │ ├── hrnet.cpython-39.pyc │ │ ├── lsknet.cpython-311.pyc │ │ ├── resnet.cpython-311.pyc │ │ ├── resnet.cpython-39.pyc │ │ ├── swintransformer.cpython-311.pyc │ │ └── swintransformer.cpython-39.pyc │ ├── convnext.py │ ├── hrnet.py │ ├── lsknet.py │ ├── resnet.py │ └── swintransformer.py ├── convnext_pop.py ├── deeplab_pop.py ├── lsk_pop.py ├── pspnet.py ├── pspnet_pop.py ├── pspplus_pop.py ├── seghr_pop.py ├── swin_pop.py └── vggunet_pop.py ├── scripts ├── evaluate_oem.sh ├── evaluate_oem_base.sh ├── ft_oem.sh └── train_oem.sh ├── train_base.py ├── trans.py ├── translabel.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-311.pyc ├── __init__.cpython-39.pyc ├── logger.cpython-311.pyc ├── logger.cpython-39.pyc ├── pyt_utils.cpython-311.pyc └── pyt_utils.cpython-39.pyc ├── coco_parse_script.py ├── gen_fs_list.py ├── get_file_list.py ├── logger.py └── pyt_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/engine.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/__pycache__/engine.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__init__.py -------------------------------------------------------------------------------- /dataset/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/base_dataset.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/base_dataset.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/base_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/base_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/coco.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/coco.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/coco.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/coco.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/coco_ft.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/coco_ft.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/coco_ft.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/coco_ft.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/oem.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/oem.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/oem.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/oem.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/oem_ft.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/oem_ft.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/oem_ft.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/oem_ft.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/voc.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/voc.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/voc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/voc.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/voc_ft.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/voc_ft.cpython-311.pyc -------------------------------------------------------------------------------- /dataset/__pycache__/voc_ft.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/__pycache__/voc_ft.cpython-39.pyc -------------------------------------------------------------------------------- /dataset/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/base_dataset.py -------------------------------------------------------------------------------- /dataset/list/oem/all_5shot_seed123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/list/oem/all_5shot_seed123.txt -------------------------------------------------------------------------------- /dataset/list/oem/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/list/oem/test.txt -------------------------------------------------------------------------------- /dataset/list/oem/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/list/oem/train.txt -------------------------------------------------------------------------------- /dataset/list/oem/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/list/oem/val.txt -------------------------------------------------------------------------------- /dataset/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/oem.py -------------------------------------------------------------------------------- /dataset/oem_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/dataset/oem_ft.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/engine.py -------------------------------------------------------------------------------- /eval_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/eval_base.py -------------------------------------------------------------------------------- /eval_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/eval_ft.py -------------------------------------------------------------------------------- /ft_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/ft_pop.py -------------------------------------------------------------------------------- /fusemat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/fusemat.py -------------------------------------------------------------------------------- /gen_new_samples_for_new_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/gen_new_samples_for_new_class.py -------------------------------------------------------------------------------- /get_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/get_list.py -------------------------------------------------------------------------------- /loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/loss/__init__.py -------------------------------------------------------------------------------- /loss/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/loss/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /loss/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/loss/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /loss/__pycache__/criterion.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/loss/__pycache__/criterion.cpython-311.pyc -------------------------------------------------------------------------------- /loss/__pycache__/criterion.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/loss/__pycache__/criterion.cpython-39.pyc -------------------------------------------------------------------------------- /loss/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/loss/criterion.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__init__.py -------------------------------------------------------------------------------- /networks/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/convnext_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/convnext_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/convnext_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/convnext_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/deeplab_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/deeplab_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/deeplab_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/deeplab_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/lsk_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/lsk_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/pspnet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/pspnet.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/pspnet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/pspnet.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/pspnet_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/pspnet_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/pspnet_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/pspnet_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/pspplus_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/pspplus_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/pspplus_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/pspplus_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/seghr_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/seghr_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/seghr_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/seghr_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/swin_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/swin_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/swin_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/swin_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/swinpspplus_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/swinpspplus_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/__pycache__/vggunet_pop.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/vggunet_pop.cpython-311.pyc -------------------------------------------------------------------------------- /networks/__pycache__/vggunet_pop.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/__pycache__/vggunet_pop.cpython-39.pyc -------------------------------------------------------------------------------- /networks/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__init__.py -------------------------------------------------------------------------------- /networks/backbones/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/convnext.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/convnext.cpython-311.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/convnext.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/convnext.cpython-39.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/hrnet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/hrnet.cpython-311.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/hrnet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/hrnet.cpython-39.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/lsknet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/lsknet.cpython-311.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/resnet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/resnet.cpython-311.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/resnet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/resnet.cpython-39.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/swintransformer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/swintransformer.cpython-311.pyc -------------------------------------------------------------------------------- /networks/backbones/__pycache__/swintransformer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/__pycache__/swintransformer.cpython-39.pyc -------------------------------------------------------------------------------- /networks/backbones/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/convnext.py -------------------------------------------------------------------------------- /networks/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/hrnet.py -------------------------------------------------------------------------------- /networks/backbones/lsknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/lsknet.py -------------------------------------------------------------------------------- /networks/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/resnet.py -------------------------------------------------------------------------------- /networks/backbones/swintransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/backbones/swintransformer.py -------------------------------------------------------------------------------- /networks/convnext_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/convnext_pop.py -------------------------------------------------------------------------------- /networks/deeplab_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/deeplab_pop.py -------------------------------------------------------------------------------- /networks/lsk_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/lsk_pop.py -------------------------------------------------------------------------------- /networks/pspnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/pspnet.py -------------------------------------------------------------------------------- /networks/pspnet_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/pspnet_pop.py -------------------------------------------------------------------------------- /networks/pspplus_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/pspplus_pop.py -------------------------------------------------------------------------------- /networks/seghr_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/seghr_pop.py -------------------------------------------------------------------------------- /networks/swin_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/swin_pop.py -------------------------------------------------------------------------------- /networks/vggunet_pop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/networks/vggunet_pop.py -------------------------------------------------------------------------------- /scripts/evaluate_oem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/scripts/evaluate_oem.sh -------------------------------------------------------------------------------- /scripts/evaluate_oem_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/scripts/evaluate_oem_base.sh -------------------------------------------------------------------------------- /scripts/ft_oem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/scripts/ft_oem.sh -------------------------------------------------------------------------------- /scripts/train_oem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/scripts/train_oem.sh -------------------------------------------------------------------------------- /train_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/train_base.py -------------------------------------------------------------------------------- /trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/trans.py -------------------------------------------------------------------------------- /translabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/translabel.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/__pycache__/logger.cpython-311.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/__pycache__/logger.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/pyt_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/__pycache__/pyt_utils.cpython-311.pyc -------------------------------------------------------------------------------- /utils/__pycache__/pyt_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/__pycache__/pyt_utils.cpython-39.pyc -------------------------------------------------------------------------------- /utils/coco_parse_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/coco_parse_script.py -------------------------------------------------------------------------------- /utils/gen_fs_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/gen_fs_list.py -------------------------------------------------------------------------------- /utils/get_file_list.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/pyt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiZhuoHong/SegLand/HEAD/utils/pyt_utils.py --------------------------------------------------------------------------------