├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── __init__.py ├── coco.py ├── coco_labels.txt ├── config.py ├── example.jpg ├── scripts │ ├── COCO2014.sh │ ├── VOC2007.sh │ └── VOC2012.sh └── voc0712.py ├── demo ├── __init__.py ├── demo.ipynb └── live.py ├── doc ├── SSD.jpg ├── detection_example.png ├── detection_example2.png ├── detection_examples.png └── ssd.png ├── eval.py ├── layers ├── __init__.py ├── box_utils.py ├── functions │ ├── __init__.py │ ├── detection.py │ └── prior_box.py └── modules │ ├── __init__.py │ ├── l2norm.py │ └── multibox_loss.py ├── ssd.py ├── test.py ├── train.py └── utils ├── __init__.py └── augmentations.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/coco.py -------------------------------------------------------------------------------- /data/coco_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/coco_labels.txt -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/config.py -------------------------------------------------------------------------------- /data/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/example.jpg -------------------------------------------------------------------------------- /data/scripts/COCO2014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/scripts/COCO2014.sh -------------------------------------------------------------------------------- /data/scripts/VOC2007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/scripts/VOC2007.sh -------------------------------------------------------------------------------- /data/scripts/VOC2012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/scripts/VOC2012.sh -------------------------------------------------------------------------------- /data/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/data/voc0712.py -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/demo/demo.ipynb -------------------------------------------------------------------------------- /demo/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/demo/live.py -------------------------------------------------------------------------------- /doc/SSD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/doc/SSD.jpg -------------------------------------------------------------------------------- /doc/detection_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/doc/detection_example.png -------------------------------------------------------------------------------- /doc/detection_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/doc/detection_example2.png -------------------------------------------------------------------------------- /doc/detection_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/doc/detection_examples.png -------------------------------------------------------------------------------- /doc/ssd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/doc/ssd.png -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/eval.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/box_utils.py -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/functions/detection.py -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/modules/l2norm.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/ssd.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdegroot/ssd.pytorch/HEAD/utils/augmentations.py --------------------------------------------------------------------------------