├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 000032.jpg └── 000232.jpg ├── average_precision.py ├── data_queue.py ├── detect.py ├── export_model.py ├── infer.py ├── pascal-voc └── download-data.sh ├── pascal_summary.py ├── process_dataset.py ├── source_pascal_voc.py ├── ssdutils.py ├── ssdvgg.py ├── train.py ├── training_data.py ├── transforms.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *~ 3 | tb-* 4 | *test* 5 | *.zip 6 | pascal-voc* 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /assets/000032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/assets/000032.jpg -------------------------------------------------------------------------------- /assets/000232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/assets/000232.jpg -------------------------------------------------------------------------------- /average_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/average_precision.py -------------------------------------------------------------------------------- /data_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/data_queue.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/detect.py -------------------------------------------------------------------------------- /export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/export_model.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/infer.py -------------------------------------------------------------------------------- /pascal-voc/download-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/pascal-voc/download-data.sh -------------------------------------------------------------------------------- /pascal_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/pascal_summary.py -------------------------------------------------------------------------------- /process_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/process_dataset.py -------------------------------------------------------------------------------- /source_pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/source_pascal_voc.py -------------------------------------------------------------------------------- /ssdutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/ssdutils.py -------------------------------------------------------------------------------- /ssdvgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/ssdvgg.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/training_data.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljanyst/ssd-tensorflow/HEAD/utils.py --------------------------------------------------------------------------------