├── .gitignore ├── LICENSE ├── README.md ├── create_pseudo_label.py ├── extract_feature.py ├── infer_cls.py ├── network ├── resnet38_cls.py └── resnet38d.py ├── script.sh ├── teaser.png ├── tool ├── camutils.py ├── imutils.py ├── infer_utils.py ├── iouutils.py ├── metric.py ├── pyutils.py └── torchutils.py ├── train_cls.py ├── utils.py └── voc12 ├── 20_class_labels.npy ├── cls_labels.npy ├── data.py ├── test.txt ├── train.txt ├── train_aug.txt ├── train_label.npy ├── val.txt └── voc12_category_list.txt /.gitignore: -------------------------------------------------------------------------------- 1 | README_.md 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/README.md -------------------------------------------------------------------------------- /create_pseudo_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/create_pseudo_label.py -------------------------------------------------------------------------------- /extract_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/extract_feature.py -------------------------------------------------------------------------------- /infer_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/infer_cls.py -------------------------------------------------------------------------------- /network/resnet38_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/network/resnet38_cls.py -------------------------------------------------------------------------------- /network/resnet38d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/network/resnet38d.py -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/script.sh -------------------------------------------------------------------------------- /teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/teaser.png -------------------------------------------------------------------------------- /tool/camutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/camutils.py -------------------------------------------------------------------------------- /tool/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/imutils.py -------------------------------------------------------------------------------- /tool/infer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/infer_utils.py -------------------------------------------------------------------------------- /tool/iouutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/iouutils.py -------------------------------------------------------------------------------- /tool/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/metric.py -------------------------------------------------------------------------------- /tool/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/pyutils.py -------------------------------------------------------------------------------- /tool/torchutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/tool/torchutils.py -------------------------------------------------------------------------------- /train_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/train_cls.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/utils.py -------------------------------------------------------------------------------- /voc12/20_class_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/20_class_labels.npy -------------------------------------------------------------------------------- /voc12/cls_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/cls_labels.npy -------------------------------------------------------------------------------- /voc12/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/data.py -------------------------------------------------------------------------------- /voc12/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/test.txt -------------------------------------------------------------------------------- /voc12/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/train.txt -------------------------------------------------------------------------------- /voc12/train_aug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/train_aug.txt -------------------------------------------------------------------------------- /voc12/train_label.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/train_label.npy -------------------------------------------------------------------------------- /voc12/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/val.txt -------------------------------------------------------------------------------- /voc12/voc12_category_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Juliachang/SC-CAM/HEAD/voc12/voc12_category_list.txt --------------------------------------------------------------------------------