├── .gitignore ├── LICENSE ├── README.md ├── anchor.py ├── box_utils.py ├── config.yml ├── image_utils.py ├── layers.py ├── losses.py ├── network.py ├── requirements.txt ├── test.py ├── train.py ├── voc_data.py └── voc_eval.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/README.md -------------------------------------------------------------------------------- /anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/anchor.py -------------------------------------------------------------------------------- /box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/box_utils.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/config.yml -------------------------------------------------------------------------------- /image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/image_utils.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/layers.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/losses.py -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/network.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/train.py -------------------------------------------------------------------------------- /voc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/voc_data.py -------------------------------------------------------------------------------- /voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChunML/ssd-tf2/HEAD/voc_eval.py --------------------------------------------------------------------------------