├── .gitignore ├── GETTING_STARTED.md ├── INSTALL.md ├── README.md ├── assets ├── CVPR_2025_SimCIS.pdf └── framework.svg ├── cog.yaml ├── configs ├── ade20k │ ├── instance-segmentation │ │ ├── Base-ADE20K-InstanceSegmentation.yaml │ │ ├── maskformer2_R50_bs16_160k.yaml │ │ └── swin │ │ │ └── maskformer2_swin_large_IN21k_384_bs16_160k.yaml │ ├── panoptic-segmentation │ │ ├── 100-10.yaml │ │ ├── 100-5.yaml │ │ ├── 100-50.yaml │ │ ├── Base-ADE20K-PanopticSegmentation.yaml │ │ ├── continual_maskformer2_R50_bs8_160k.yaml │ │ ├── maskformer2_R50_bs16_160k.yaml │ │ └── swin │ │ │ └── maskformer2_swin_large_IN21k_384_bs16_160k.yaml │ └── semantic-segmentation │ │ ├── 100-10.yaml │ │ ├── 100-5.yaml │ │ ├── 100-50.yaml │ │ ├── Base-ADE20K-SemanticSegmentation.yaml │ │ ├── continual_maskformer2_R101_bs8_160k.yaml │ │ ├── maskformer2_R101_bs16_160k.yaml │ │ ├── maskformer2_R101_bs16_90k.yaml │ │ ├── maskformer2_R50_bs16_160k.yaml │ │ └── swin │ │ ├── maskformer2_swin_base_384_bs16_160k_res640.yaml │ │ ├── maskformer2_swin_base_IN21k_384_bs16_160k_res640.yaml │ │ ├── maskformer2_swin_large_IN21k_384_bs16_160k_res640.yaml │ │ ├── maskformer2_swin_small_bs16_160k.yaml │ │ └── maskformer2_swin_tiny_bs16_160k.yaml ├── cityscapes │ ├── instance-segmentation │ │ ├── Base-Cityscapes-InstanceSegmentation.yaml │ │ ├── maskformer2_R101_bs16_90k.yaml │ │ ├── maskformer2_R50_bs16_90k.yaml │ │ └── swin │ │ │ ├── maskformer2_swin_base_IN21k_384_bs16_90k.yaml │ │ │ ├── maskformer2_swin_large_IN21k_384_bs16_90k.yaml │ │ │ ├── maskformer2_swin_small_bs16_90k.yaml │ │ │ └── maskformer2_swin_tiny_bs16_90k.yaml │ ├── panoptic-segmentation │ │ ├── Base-Cityscapes-PanopticSegmentation.yaml │ │ ├── maskformer2_R101_bs16_90k.yaml │ │ ├── maskformer2_R50_bs16_90k.yaml │ │ └── swin │ │ │ ├── maskformer2_swin_base_IN21k_384_bs16_90k.yaml │ │ │ ├── maskformer2_swin_large_IN21k_384_bs16_90k.yaml │ │ │ ├── maskformer2_swin_small_bs16_90k.yaml │ │ │ └── maskformer2_swin_tiny_bs16_90k.yaml │ └── semantic-segmentation │ │ ├── Base-Cityscapes-SemanticSegmentation.yaml │ │ ├── maskformer2_R101_bs16_90k.yaml │ │ ├── maskformer2_R50_bs16_90k.yaml │ │ └── swin │ │ ├── maskformer2_swin_base_IN21k_384_bs16_90k.yaml │ │ ├── maskformer2_swin_large_IN21k_384_bs16_90k.yaml │ │ ├── maskformer2_swin_small_bs16_90k.yaml │ │ └── maskformer2_swin_tiny_bs16_90k.yaml ├── coco │ ├── instance-segmentation │ │ ├── Base-COCO-InstanceSegmentation.yaml │ │ ├── maskformer2_R101_bs16_50ep.yaml │ │ ├── maskformer2_R50_bs16_50ep.yaml │ │ └── swin │ │ │ ├── maskformer2_swin_base_384_bs16_50ep.yaml │ │ │ ├── maskformer2_swin_base_IN21k_384_bs16_50ep.yaml │ │ │ ├── maskformer2_swin_large_IN21k_384_bs16_100ep.yaml │ │ │ ├── maskformer2_swin_small_bs16_50ep.yaml │ │ │ └── maskformer2_swin_tiny_bs16_50ep.yaml │ └── panoptic-segmentation │ │ ├── Base-COCO-PanopticSegmentation.yaml │ │ ├── maskformer2_R101_bs16_50ep.yaml │ │ ├── maskformer2_R50_bs16_50ep.yaml │ │ └── swin │ │ ├── maskformer2_swin_base_384_bs16_50ep.yaml │ │ ├── maskformer2_swin_base_IN21k_384_bs16_50ep.yaml │ │ ├── maskformer2_swin_large_IN21k_384_bs16_100ep.yaml │ │ ├── maskformer2_swin_small_bs16_50ep.yaml │ │ └── maskformer2_swin_tiny_bs16_50ep.yaml ├── mapillary-vistas │ ├── panoptic-segmentation │ │ ├── Base-MapillaryVistas-PanopticSegmentation.yaml │ │ ├── maskformer_R50_bs16_300k.yaml │ │ └── swin │ │ │ └── maskformer2_swin_large_IN21k_384_bs16_300k.yaml │ └── semantic-segmentation │ │ ├── Base-MapillaryVistas-SemanticSegmentation.yaml │ │ ├── maskformer2_R50_bs16_300k.yaml │ │ └── swin │ │ └── maskformer2_swin_large_IN21k_384_bs16_300k.yaml ├── youtubevis_2019 │ ├── Base-YouTubeVIS-VideoInstanceSegmentation.yaml │ ├── swin │ │ ├── video_maskformer2_swin_base_IN21k_384_bs16_8ep.yaml │ │ ├── video_maskformer2_swin_large_IN21k_384_bs16_8ep.yaml │ │ ├── video_maskformer2_swin_small_bs16_8ep.yaml │ │ └── video_maskformer2_swin_tiny_bs16_8ep.yaml │ ├── video_maskformer2_R101_bs16_8ep.yaml │ └── video_maskformer2_R50_bs16_8ep.yaml └── youtubevis_2021 │ ├── Base-YouTubeVIS-VideoInstanceSegmentation.yaml │ ├── swin │ ├── video_maskformer2_swin_base_IN21k_384_bs16_8ep.yaml │ ├── video_maskformer2_swin_large_IN21k_384_bs16_8ep.yaml │ ├── video_maskformer2_swin_small_bs16_8ep.yaml │ └── video_maskformer2_swin_tiny_bs16_8ep.yaml │ ├── video_maskformer2_R101_bs16_8ep.yaml │ └── video_maskformer2_R50_bs16_8ep.yaml ├── continual ├── __init__.py ├── config.py ├── continual_instance_dataset_mapper.py ├── continual_panoptic_dataset_mapper.py ├── continual_semantic_dataset_mapper.py ├── evaluator.py ├── memory_generator │ ├── __init__.py │ ├── memory_selection_inst.py │ ├── memory_selection_pan.py │ └── memory_selection_sem.py ├── prepare_datasets.py ├── train_loop.py └── trainer.py ├── datasets ├── ade20k_instance_catid_mapping.txt ├── ade20k_instance_imgCatIds.json ├── prepare_ade20k_ins_seg.py ├── prepare_ade20k_pan_seg.py ├── prepare_ade20k_sem_seg.py └── prepare_coco_semantic_annos_from_panoptic_annos.py ├── demo ├── README.md ├── combineImage.py ├── demo.py ├── predictor.py ├── run.py ├── run_demo.sh ├── run_demo_copy.sh ├── run_image.py ├── run_sam1b.py └── twostageinfo │ └── filename.txt ├── mask2former ├── __init__.py ├── config.py ├── data │ ├── __init__.py │ ├── dataset_mappers │ │ ├── __init__.py │ │ ├── coco_instance_new_baseline_dataset_mapper.py │ │ ├── coco_panoptic_new_baseline_dataset_mapper.py │ │ ├── mask_former_instance_dataset_mapper.py │ │ ├── mask_former_panoptic_dataset_mapper.py │ │ └── mask_former_semantic_dataset_mapper.py │ └── datasets │ │ ├── __init__.py │ │ ├── register_ade20k_full.py │ │ ├── register_ade20k_instance.py │ │ ├── register_ade20k_panoptic.py │ │ ├── register_coco_panoptic_annos_semseg.py │ │ ├── register_coco_stuff_10k.py │ │ ├── register_mapillary_vistas.py │ │ └── register_mapillary_vistas_panoptic.py ├── evaluation │ ├── __init__.py │ └── instance_evaluation.py ├── maskformer_model.py ├── modeling │ ├── __init__.py │ ├── backbone │ │ ├── __init__.py │ │ └── swin.py │ ├── criterion.py │ ├── matcher.py │ ├── meta_arch │ │ ├── __init__.py │ │ ├── mask_former_head.py │ │ └── per_pixel_baseline.py │ ├── pixel_decoder │ │ ├── __init__.py │ │ ├── fpn.py │ │ ├── msdeformattn.py │ │ └── ops │ │ │ ├── functions │ │ │ ├── __init__.py │ │ │ └── ms_deform_attn_func.py │ │ │ ├── make.sh │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ └── ms_deform_attn.py │ │ │ ├── setup.py │ │ │ ├── src │ │ │ ├── cpu │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ └── ms_deform_attn_cpu.h │ │ │ ├── cuda │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ ├── ms_deform_attn.h │ │ │ └── vision.cpp │ │ │ └── test.py │ └── transformer_decoder │ │ ├── __init__.py │ │ ├── mask2former_transformer_decoder.py │ │ ├── mask2former_transformer_decoder_demo.py │ │ ├── mask2former_transformer_decoder_vis.py │ │ ├── maskformer_transformer_decoder.py │ │ ├── position_encoding.py │ │ ├── transformer.py │ │ └── utils │ │ ├── box_ops.py │ │ └── utils.py ├── test_time_augmentation.py └── utils │ ├── __init__.py │ ├── box_ops.py │ ├── misc.py │ └── utils.py ├── predict.py ├── requirements.txt ├── scripts ├── pan_100-10.sh ├── pan_100-5.sh ├── pan_100-50.sh ├── panoptic_eval.sh ├── sem_100-10.sh ├── sem_100-5.sh ├── sem_100-50.sh └── sementic_eval.sh ├── tools ├── README.md ├── __init__.py ├── analyze_model.py ├── convert-pretrained-swin-model-to-d2.py ├── convert-torchvision-to-d2.py ├── evaluate_coco_boundary_ap.py ├── evaluate_pq_for_semantic_segmentation.py └── visualizer.py └── train_continual.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/.gitignore -------------------------------------------------------------------------------- /GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/GETTING_STARTED.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/README.md -------------------------------------------------------------------------------- /assets/CVPR_2025_SimCIS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/assets/CVPR_2025_SimCIS.pdf -------------------------------------------------------------------------------- /assets/framework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/assets/framework.svg -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/cog.yaml -------------------------------------------------------------------------------- /configs/ade20k/instance-segmentation/Base-ADE20K-InstanceSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/instance-segmentation/Base-ADE20K-InstanceSegmentation.yaml -------------------------------------------------------------------------------- /configs/ade20k/instance-segmentation/maskformer2_R50_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/instance-segmentation/maskformer2_R50_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/instance-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/instance-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/100-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/100-10.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/100-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/100-5.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/100-50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/100-50.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/Base-ADE20K-PanopticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/Base-ADE20K-PanopticSegmentation.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/continual_maskformer2_R50_bs8_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/continual_maskformer2_R50_bs8_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/maskformer2_R50_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/maskformer2_R50_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/100-10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/100-10.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/100-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/100-5.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/100-50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/100-50.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/Base-ADE20K-SemanticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/Base-ADE20K-SemanticSegmentation.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/continual_maskformer2_R101_bs8_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/continual_maskformer2_R101_bs8_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/maskformer2_R101_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/maskformer2_R101_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/maskformer2_R101_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/maskformer2_R101_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/maskformer2_R50_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/maskformer2_R50_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/swin/maskformer2_swin_base_384_bs16_160k_res640.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/swin/maskformer2_swin_base_384_bs16_160k_res640.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_160k_res640.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_160k_res640.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_160k_res640.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_160k_res640.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/swin/maskformer2_swin_small_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/swin/maskformer2_swin_small_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/ade20k/semantic-segmentation/swin/maskformer2_swin_tiny_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/ade20k/semantic-segmentation/swin/maskformer2_swin_tiny_bs16_160k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/Base-Cityscapes-InstanceSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/Base-Cityscapes-InstanceSegmentation.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/maskformer2_R101_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/maskformer2_R101_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/maskformer2_R50_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/maskformer2_R50_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/swin/maskformer2_swin_small_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/swin/maskformer2_swin_small_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/instance-segmentation/swin/maskformer2_swin_tiny_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/instance-segmentation/swin/maskformer2_swin_tiny_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/Base-Cityscapes-PanopticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/Base-Cityscapes-PanopticSegmentation.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/maskformer2_R101_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/maskformer2_R101_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/maskformer2_R50_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/maskformer2_R50_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_small_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_small_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_tiny_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/panoptic-segmentation/swin/maskformer2_swin_tiny_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/Base-Cityscapes-SemanticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/Base-Cityscapes-SemanticSegmentation.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/maskformer2_R101_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/maskformer2_R101_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/maskformer2_R50_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/maskformer2_R50_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_small_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_small_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_tiny_bs16_90k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/cityscapes/semantic-segmentation/swin/maskformer2_swin_tiny_bs16_90k.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/Base-COCO-InstanceSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/Base-COCO-InstanceSegmentation.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/maskformer2_R101_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/maskformer2_R101_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/maskformer2_R50_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/maskformer2_R50_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/swin/maskformer2_swin_base_384_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/swin/maskformer2_swin_base_384_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_100ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_100ep.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/swin/maskformer2_swin_small_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/swin/maskformer2_swin_small_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/instance-segmentation/swin/maskformer2_swin_tiny_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/instance-segmentation/swin/maskformer2_swin_tiny_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/Base-COCO-PanopticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/Base-COCO-PanopticSegmentation.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/maskformer2_R101_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/maskformer2_R101_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/maskformer2_R50_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/maskformer2_R50_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/swin/maskformer2_swin_base_384_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/swin/maskformer2_swin_base_384_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/swin/maskformer2_swin_base_IN21k_384_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_100ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_100ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/swin/maskformer2_swin_small_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/swin/maskformer2_swin_small_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/coco/panoptic-segmentation/swin/maskformer2_swin_tiny_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/coco/panoptic-segmentation/swin/maskformer2_swin_tiny_bs16_50ep.yaml -------------------------------------------------------------------------------- /configs/mapillary-vistas/panoptic-segmentation/Base-MapillaryVistas-PanopticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/mapillary-vistas/panoptic-segmentation/Base-MapillaryVistas-PanopticSegmentation.yaml -------------------------------------------------------------------------------- /configs/mapillary-vistas/panoptic-segmentation/maskformer_R50_bs16_300k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/mapillary-vistas/panoptic-segmentation/maskformer_R50_bs16_300k.yaml -------------------------------------------------------------------------------- /configs/mapillary-vistas/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_300k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/mapillary-vistas/panoptic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_300k.yaml -------------------------------------------------------------------------------- /configs/mapillary-vistas/semantic-segmentation/Base-MapillaryVistas-SemanticSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/mapillary-vistas/semantic-segmentation/Base-MapillaryVistas-SemanticSegmentation.yaml -------------------------------------------------------------------------------- /configs/mapillary-vistas/semantic-segmentation/maskformer2_R50_bs16_300k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/mapillary-vistas/semantic-segmentation/maskformer2_R50_bs16_300k.yaml -------------------------------------------------------------------------------- /configs/mapillary-vistas/semantic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_300k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/mapillary-vistas/semantic-segmentation/swin/maskformer2_swin_large_IN21k_384_bs16_300k.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/Base-YouTubeVIS-VideoInstanceSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/Base-YouTubeVIS-VideoInstanceSegmentation.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/swin/video_maskformer2_swin_base_IN21k_384_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/swin/video_maskformer2_swin_base_IN21k_384_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/swin/video_maskformer2_swin_large_IN21k_384_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/swin/video_maskformer2_swin_large_IN21k_384_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/swin/video_maskformer2_swin_small_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/swin/video_maskformer2_swin_small_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/swin/video_maskformer2_swin_tiny_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/swin/video_maskformer2_swin_tiny_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/video_maskformer2_R101_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/video_maskformer2_R101_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2019/video_maskformer2_R50_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2019/video_maskformer2_R50_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/Base-YouTubeVIS-VideoInstanceSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/Base-YouTubeVIS-VideoInstanceSegmentation.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/swin/video_maskformer2_swin_base_IN21k_384_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/swin/video_maskformer2_swin_base_IN21k_384_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/swin/video_maskformer2_swin_large_IN21k_384_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/swin/video_maskformer2_swin_large_IN21k_384_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/swin/video_maskformer2_swin_small_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/swin/video_maskformer2_swin_small_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/swin/video_maskformer2_swin_tiny_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/swin/video_maskformer2_swin_tiny_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/video_maskformer2_R101_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/video_maskformer2_R101_bs16_8ep.yaml -------------------------------------------------------------------------------- /configs/youtubevis_2021/video_maskformer2_R50_bs16_8ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/configs/youtubevis_2021/video_maskformer2_R50_bs16_8ep.yaml -------------------------------------------------------------------------------- /continual/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/__init__.py -------------------------------------------------------------------------------- /continual/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/config.py -------------------------------------------------------------------------------- /continual/continual_instance_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/continual_instance_dataset_mapper.py -------------------------------------------------------------------------------- /continual/continual_panoptic_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/continual_panoptic_dataset_mapper.py -------------------------------------------------------------------------------- /continual/continual_semantic_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/continual_semantic_dataset_mapper.py -------------------------------------------------------------------------------- /continual/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/evaluator.py -------------------------------------------------------------------------------- /continual/memory_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /continual/memory_generator/memory_selection_inst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/memory_generator/memory_selection_inst.py -------------------------------------------------------------------------------- /continual/memory_generator/memory_selection_pan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/memory_generator/memory_selection_pan.py -------------------------------------------------------------------------------- /continual/memory_generator/memory_selection_sem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/memory_generator/memory_selection_sem.py -------------------------------------------------------------------------------- /continual/prepare_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/prepare_datasets.py -------------------------------------------------------------------------------- /continual/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/train_loop.py -------------------------------------------------------------------------------- /continual/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/continual/trainer.py -------------------------------------------------------------------------------- /datasets/ade20k_instance_catid_mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/datasets/ade20k_instance_catid_mapping.txt -------------------------------------------------------------------------------- /datasets/ade20k_instance_imgCatIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/datasets/ade20k_instance_imgCatIds.json -------------------------------------------------------------------------------- /datasets/prepare_ade20k_ins_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/datasets/prepare_ade20k_ins_seg.py -------------------------------------------------------------------------------- /datasets/prepare_ade20k_pan_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/datasets/prepare_ade20k_pan_seg.py -------------------------------------------------------------------------------- /datasets/prepare_ade20k_sem_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/datasets/prepare_ade20k_sem_seg.py -------------------------------------------------------------------------------- /datasets/prepare_coco_semantic_annos_from_panoptic_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/datasets/prepare_coco_semantic_annos_from_panoptic_annos.py -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/combineImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/combineImage.py -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/predictor.py -------------------------------------------------------------------------------- /demo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/run.py -------------------------------------------------------------------------------- /demo/run_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/run_demo.sh -------------------------------------------------------------------------------- /demo/run_demo_copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/run_demo_copy.sh -------------------------------------------------------------------------------- /demo/run_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/run_image.py -------------------------------------------------------------------------------- /demo/run_sam1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/demo/run_sam1b.py -------------------------------------------------------------------------------- /demo/twostageinfo/filename.txt: -------------------------------------------------------------------------------- 1 | sa_164487.jpg -------------------------------------------------------------------------------- /mask2former/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/__init__.py -------------------------------------------------------------------------------- /mask2former/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/config.py -------------------------------------------------------------------------------- /mask2former/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/__init__.py -------------------------------------------------------------------------------- /mask2former/data/dataset_mappers/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /mask2former/data/dataset_mappers/coco_instance_new_baseline_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/dataset_mappers/coco_instance_new_baseline_dataset_mapper.py -------------------------------------------------------------------------------- /mask2former/data/dataset_mappers/coco_panoptic_new_baseline_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/dataset_mappers/coco_panoptic_new_baseline_dataset_mapper.py -------------------------------------------------------------------------------- /mask2former/data/dataset_mappers/mask_former_instance_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/dataset_mappers/mask_former_instance_dataset_mapper.py -------------------------------------------------------------------------------- /mask2former/data/dataset_mappers/mask_former_panoptic_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/dataset_mappers/mask_former_panoptic_dataset_mapper.py -------------------------------------------------------------------------------- /mask2former/data/dataset_mappers/mask_former_semantic_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/dataset_mappers/mask_former_semantic_dataset_mapper.py -------------------------------------------------------------------------------- /mask2former/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/__init__.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_ade20k_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_ade20k_full.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_ade20k_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_ade20k_instance.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_ade20k_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_ade20k_panoptic.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_coco_panoptic_annos_semseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_coco_panoptic_annos_semseg.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_coco_stuff_10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_coco_stuff_10k.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_mapillary_vistas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_mapillary_vistas.py -------------------------------------------------------------------------------- /mask2former/data/datasets/register_mapillary_vistas_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/data/datasets/register_mapillary_vistas_panoptic.py -------------------------------------------------------------------------------- /mask2former/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mask2former/evaluation/instance_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/evaluation/instance_evaluation.py -------------------------------------------------------------------------------- /mask2former/maskformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/maskformer_model.py -------------------------------------------------------------------------------- /mask2former/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/__init__.py -------------------------------------------------------------------------------- /mask2former/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /mask2former/modeling/backbone/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/backbone/swin.py -------------------------------------------------------------------------------- /mask2former/modeling/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/criterion.py -------------------------------------------------------------------------------- /mask2former/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/matcher.py -------------------------------------------------------------------------------- /mask2former/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /mask2former/modeling/meta_arch/mask_former_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/meta_arch/mask_former_head.py -------------------------------------------------------------------------------- /mask2former/modeling/meta_arch/per_pixel_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/meta_arch/per_pixel_baseline.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/fpn.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/msdeformattn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/msdeformattn.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/functions/__init__.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/functions/ms_deform_attn_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/functions/ms_deform_attn_func.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/make.sh -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/modules/__init__.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/modules/ms_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/modules/ms_deform_attn.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/setup.py -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.cpp -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.h -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.cu -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.h -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/cuda/ms_deform_im2col_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/cuda/ms_deform_im2col_cuda.cuh -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/ms_deform_attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/ms_deform_attn.h -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/src/vision.cpp -------------------------------------------------------------------------------- /mask2former/modeling/pixel_decoder/ops/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/pixel_decoder/ops/test.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/__init__.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/mask2former_transformer_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/mask2former_transformer_decoder.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/mask2former_transformer_decoder_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/mask2former_transformer_decoder_demo.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/mask2former_transformer_decoder_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/mask2former_transformer_decoder_vis.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/maskformer_transformer_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/maskformer_transformer_decoder.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/position_encoding.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/transformer.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/utils/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/utils/box_ops.py -------------------------------------------------------------------------------- /mask2former/modeling/transformer_decoder/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/modeling/transformer_decoder/utils/utils.py -------------------------------------------------------------------------------- /mask2former/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/test_time_augmentation.py -------------------------------------------------------------------------------- /mask2former/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /mask2former/utils/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/utils/box_ops.py -------------------------------------------------------------------------------- /mask2former/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/utils/misc.py -------------------------------------------------------------------------------- /mask2former/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/mask2former/utils/utils.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/pan_100-10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/pan_100-10.sh -------------------------------------------------------------------------------- /scripts/pan_100-5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/pan_100-5.sh -------------------------------------------------------------------------------- /scripts/pan_100-50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/pan_100-50.sh -------------------------------------------------------------------------------- /scripts/panoptic_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/panoptic_eval.sh -------------------------------------------------------------------------------- /scripts/sem_100-10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/sem_100-10.sh -------------------------------------------------------------------------------- /scripts/sem_100-5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/sem_100-5.sh -------------------------------------------------------------------------------- /scripts/sem_100-50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/sem_100-50.sh -------------------------------------------------------------------------------- /scripts/sementic_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/scripts/sementic_eval.sh -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/analyze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/analyze_model.py -------------------------------------------------------------------------------- /tools/convert-pretrained-swin-model-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/convert-pretrained-swin-model-to-d2.py -------------------------------------------------------------------------------- /tools/convert-torchvision-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/convert-torchvision-to-d2.py -------------------------------------------------------------------------------- /tools/evaluate_coco_boundary_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/evaluate_coco_boundary_ap.py -------------------------------------------------------------------------------- /tools/evaluate_pq_for_semantic_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/evaluate_pq_for_semantic_segmentation.py -------------------------------------------------------------------------------- /tools/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/tools/visualizer.py -------------------------------------------------------------------------------- /train_continual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SooLab/SimCIS/HEAD/train_continual.py --------------------------------------------------------------------------------