├── .gitignore ├── .gitmodules ├── README.md ├── experiments ├── easy_results.txt └── scripts │ ├── eval_easy.sh │ ├── train_erase.sh │ └── train_mattnet.sh ├── lib ├── .gitignore ├── crits │ ├── __init__.py │ └── max_margin_crit.py ├── layers │ ├── __init__.py │ ├── joint_match.py │ ├── lang_encoder.py │ └── visual_encoder.py ├── loaders │ ├── __init__.py │ ├── dets_loader.py │ ├── gt_mrcn_loader.py │ └── loader.py ├── models │ ├── __init__.py │ ├── eval_dets_utils.py │ ├── eval_easy_utils.py │ └── utils.py └── mrcn │ ├── __init__.py │ ├── inference.py │ └── inference_no_imdb.py └── tools ├── _init_paths.py ├── eval_dets.py ├── eval_easy.py ├── eval_masks.py ├── extract_mrcn_ann_feats.py ├── extract_mrcn_det_feats.py ├── extract_mrcn_head_feats.py ├── opt.py ├── prepro.py ├── run_detect.py ├── run_detect_to_mask.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/README.md -------------------------------------------------------------------------------- /experiments/easy_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/experiments/easy_results.txt -------------------------------------------------------------------------------- /experiments/scripts/eval_easy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/experiments/scripts/eval_easy.sh -------------------------------------------------------------------------------- /experiments/scripts/train_erase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/experiments/scripts/train_erase.sh -------------------------------------------------------------------------------- /experiments/scripts/train_mattnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/experiments/scripts/train_mattnet.sh -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/crits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/crits/max_margin_crit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/crits/max_margin_crit.py -------------------------------------------------------------------------------- /lib/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/layers/joint_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/layers/joint_match.py -------------------------------------------------------------------------------- /lib/layers/lang_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/layers/lang_encoder.py -------------------------------------------------------------------------------- /lib/layers/visual_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/layers/visual_encoder.py -------------------------------------------------------------------------------- /lib/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/loaders/dets_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/loaders/dets_loader.py -------------------------------------------------------------------------------- /lib/loaders/gt_mrcn_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/loaders/gt_mrcn_loader.py -------------------------------------------------------------------------------- /lib/loaders/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/loaders/loader.py -------------------------------------------------------------------------------- /lib/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/models/eval_dets_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/models/eval_dets_utils.py -------------------------------------------------------------------------------- /lib/models/eval_easy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/models/eval_easy_utils.py -------------------------------------------------------------------------------- /lib/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/models/utils.py -------------------------------------------------------------------------------- /lib/mrcn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mrcn/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/mrcn/inference.py -------------------------------------------------------------------------------- /lib/mrcn/inference_no_imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/lib/mrcn/inference_no_imdb.py -------------------------------------------------------------------------------- /tools/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/_init_paths.py -------------------------------------------------------------------------------- /tools/eval_dets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/eval_dets.py -------------------------------------------------------------------------------- /tools/eval_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/eval_easy.py -------------------------------------------------------------------------------- /tools/eval_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/eval_masks.py -------------------------------------------------------------------------------- /tools/extract_mrcn_ann_feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/extract_mrcn_ann_feats.py -------------------------------------------------------------------------------- /tools/extract_mrcn_det_feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/extract_mrcn_det_feats.py -------------------------------------------------------------------------------- /tools/extract_mrcn_head_feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/extract_mrcn_head_feats.py -------------------------------------------------------------------------------- /tools/opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/opt.py -------------------------------------------------------------------------------- /tools/prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/prepro.py -------------------------------------------------------------------------------- /tools/run_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/run_detect.py -------------------------------------------------------------------------------- /tools/run_detect_to_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/run_detect_to_mask.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xh-liu/CM-Erase-REG/HEAD/tools/train.py --------------------------------------------------------------------------------