gitextract_6znju64_/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data/ │ ├── __init__.py │ ├── coco.py │ ├── coco_labels.txt │ ├── config.py │ ├── scripts/ │ │ ├── COCO2014.sh │ │ ├── VOC2007.sh │ │ └── VOC2012.sh │ └── voc0712.py ├── demo/ │ ├── __init__.py │ ├── demo.ipynb │ └── live.py ├── eval.py ├── layers/ │ ├── __init__.py │ ├── box_utils.py │ ├── functions/ │ │ ├── __init__.py │ │ ├── detection.py │ │ └── prior_box.py │ └── modules/ │ ├── __init__.py │ ├── l2norm.py │ ├── multibox_loss.py │ └── repulsion_loss.py ├── ssd.py ├── test.py ├── train.py └── utils/ ├── __init__.py └── augmentations.py