├── LICENSE ├── README.md ├── configs ├── Base-RCNN-C4.yaml ├── baseline_R_50_C4_1x-city2foggy.yaml └── sap_R_50_C4_1x-city2foggy.yaml ├── detection ├── da_heads │ ├── build.py │ └── sapnet.py ├── data │ ├── build.py │ └── register.py ├── evaluation │ ├── __init__.py │ └── pascal_voc.py ├── layers │ ├── __init__.py │ └── grad_scaling.py ├── meta_arch │ └── sap_rcnn.py ├── modeling │ └── rpn.py └── trainer.py ├── docs └── resnet-sap.png ├── scripts ├── eval_baseline_city2foggy.sh ├── eval_sap_city2foggy.sh ├── test_img_sap_city2foggy.sh ├── train_baseline_city2foggy.sh └── train_sap_city2foggy.sh └── tools └── train_net.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/README.md -------------------------------------------------------------------------------- /configs/Base-RCNN-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/configs/Base-RCNN-C4.yaml -------------------------------------------------------------------------------- /configs/baseline_R_50_C4_1x-city2foggy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/configs/baseline_R_50_C4_1x-city2foggy.yaml -------------------------------------------------------------------------------- /configs/sap_R_50_C4_1x-city2foggy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/configs/sap_R_50_C4_1x-city2foggy.yaml -------------------------------------------------------------------------------- /detection/da_heads/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/da_heads/build.py -------------------------------------------------------------------------------- /detection/da_heads/sapnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/da_heads/sapnet.py -------------------------------------------------------------------------------- /detection/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/data/build.py -------------------------------------------------------------------------------- /detection/data/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/data/register.py -------------------------------------------------------------------------------- /detection/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/evaluation/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/evaluation/pascal_voc.py -------------------------------------------------------------------------------- /detection/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/layers/__init__.py -------------------------------------------------------------------------------- /detection/layers/grad_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/layers/grad_scaling.py -------------------------------------------------------------------------------- /detection/meta_arch/sap_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/meta_arch/sap_rcnn.py -------------------------------------------------------------------------------- /detection/modeling/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/modeling/rpn.py -------------------------------------------------------------------------------- /detection/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/detection/trainer.py -------------------------------------------------------------------------------- /docs/resnet-sap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/docs/resnet-sap.png -------------------------------------------------------------------------------- /scripts/eval_baseline_city2foggy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/scripts/eval_baseline_city2foggy.sh -------------------------------------------------------------------------------- /scripts/eval_sap_city2foggy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/scripts/eval_sap_city2foggy.sh -------------------------------------------------------------------------------- /scripts/test_img_sap_city2foggy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/scripts/test_img_sap_city2foggy.sh -------------------------------------------------------------------------------- /scripts/train_baseline_city2foggy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/scripts/train_baseline_city2foggy.sh -------------------------------------------------------------------------------- /scripts/train_sap_city2foggy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/scripts/train_sap_city2foggy.sh -------------------------------------------------------------------------------- /tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuntw6096/sap-da-detectron2/HEAD/tools/train_net.py --------------------------------------------------------------------------------