├── LICENSE ├── README.md ├── config └── config.cfg ├── data ├── vis_tp.png └── whole_figure.png ├── dataset ├── __pycache__ │ └── dataset_vd.cpython-36.pyc ├── cocodataset.py └── dataset_vd.py ├── docker └── Dockerfile ├── models ├── shap_loss_1.py ├── yolo_layer.py └── yolov3_shap.py ├── requirements ├── download_weights.sh ├── getcoco.sh └── requirements.txt ├── test.ipynb ├── train_vd_reg.py └── utils ├── cocoapi_evaluator.py ├── parse_yolo_weights.py ├── resize_gt.py ├── utils.py ├── vd_evaluator.py └── vis_bbox.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/README.md -------------------------------------------------------------------------------- /config/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/config/config.cfg -------------------------------------------------------------------------------- /data/vis_tp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/data/vis_tp.png -------------------------------------------------------------------------------- /data/whole_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/data/whole_figure.png -------------------------------------------------------------------------------- /dataset/__pycache__/dataset_vd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/dataset/__pycache__/dataset_vd.cpython-36.pyc -------------------------------------------------------------------------------- /dataset/cocodataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/dataset/cocodataset.py -------------------------------------------------------------------------------- /dataset/dataset_vd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/dataset/dataset_vd.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /models/shap_loss_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/models/shap_loss_1.py -------------------------------------------------------------------------------- /models/yolo_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/models/yolo_layer.py -------------------------------------------------------------------------------- /models/yolov3_shap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/models/yolov3_shap.py -------------------------------------------------------------------------------- /requirements/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/requirements/download_weights.sh -------------------------------------------------------------------------------- /requirements/getcoco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/requirements/getcoco.sh -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/test.ipynb -------------------------------------------------------------------------------- /train_vd_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/train_vd_reg.py -------------------------------------------------------------------------------- /utils/cocoapi_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/utils/cocoapi_evaluator.py -------------------------------------------------------------------------------- /utils/parse_yolo_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/utils/parse_yolo_weights.py -------------------------------------------------------------------------------- /utils/resize_gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/utils/resize_gt.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vd_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/utils/vd_evaluator.py -------------------------------------------------------------------------------- /utils/vis_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiroki-kawauchi/SHAPObjectDetection/HEAD/utils/vis_bbox.py --------------------------------------------------------------------------------