├── LICENSE ├── NOTICE ├── README.md ├── bash_run_sample.sh ├── cam_samples_wood.png ├── get_advcam.py ├── gradcam.py ├── misc ├── imutils.py ├── indexing.py ├── pyutils.py └── torchutils.py ├── net ├── resnet50.py ├── resnet50_cam.py └── resnet50_irn.py ├── requirements.txt ├── run_sample.py ├── run_sample_pseudo_gt.py ├── step ├── cam_to_ir_label.py ├── eval_cam.py ├── eval_ins_seg.py ├── eval_sem_seg.py ├── make_cam.py ├── make_cocoann.py ├── make_ins_seg_labels.py ├── make_sem_seg_labels.py ├── train_cam_clustering.py ├── train_irn.py └── train_utils.py └── voc12 ├── cls_labels.npy ├── dataloader.py ├── make_cls_labels.py ├── test.txt ├── train.txt ├── train_aug.txt └── val.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/README.md -------------------------------------------------------------------------------- /bash_run_sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/bash_run_sample.sh -------------------------------------------------------------------------------- /cam_samples_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/cam_samples_wood.png -------------------------------------------------------------------------------- /get_advcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/get_advcam.py -------------------------------------------------------------------------------- /gradcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/gradcam.py -------------------------------------------------------------------------------- /misc/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/misc/imutils.py -------------------------------------------------------------------------------- /misc/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/misc/indexing.py -------------------------------------------------------------------------------- /misc/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/misc/pyutils.py -------------------------------------------------------------------------------- /misc/torchutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/misc/torchutils.py -------------------------------------------------------------------------------- /net/resnet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/net/resnet50.py -------------------------------------------------------------------------------- /net/resnet50_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/net/resnet50_cam.py -------------------------------------------------------------------------------- /net/resnet50_irn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/net/resnet50_irn.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/run_sample.py -------------------------------------------------------------------------------- /run_sample_pseudo_gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/run_sample_pseudo_gt.py -------------------------------------------------------------------------------- /step/cam_to_ir_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/cam_to_ir_label.py -------------------------------------------------------------------------------- /step/eval_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/eval_cam.py -------------------------------------------------------------------------------- /step/eval_ins_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/eval_ins_seg.py -------------------------------------------------------------------------------- /step/eval_sem_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/eval_sem_seg.py -------------------------------------------------------------------------------- /step/make_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/make_cam.py -------------------------------------------------------------------------------- /step/make_cocoann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/make_cocoann.py -------------------------------------------------------------------------------- /step/make_ins_seg_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/make_ins_seg_labels.py -------------------------------------------------------------------------------- /step/make_sem_seg_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/make_sem_seg_labels.py -------------------------------------------------------------------------------- /step/train_cam_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/train_cam_clustering.py -------------------------------------------------------------------------------- /step/train_irn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/train_irn.py -------------------------------------------------------------------------------- /step/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/step/train_utils.py -------------------------------------------------------------------------------- /voc12/cls_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/cls_labels.npy -------------------------------------------------------------------------------- /voc12/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/dataloader.py -------------------------------------------------------------------------------- /voc12/make_cls_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/make_cls_labels.py -------------------------------------------------------------------------------- /voc12/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/test.txt -------------------------------------------------------------------------------- /voc12/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/train.txt -------------------------------------------------------------------------------- /voc12/train_aug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/train_aug.txt -------------------------------------------------------------------------------- /voc12/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver-ai/w-ood/HEAD/voc12/val.txt --------------------------------------------------------------------------------