#352 · Primary category: Computer Vision

SSD-Tensorflow

deep-learning object-detection ssd tensorflow yolo

Single Shot MultiBox Detector in TensorFlow

Project last updated:08/12/21

GitHub Stars

4.1K

Forks

1.8K

Contributors

3

License

Other

Why we included this project

SSD-TensorFlow is a TensorFlow reimplementation of the SSD paper, and for anyone trying to understand how modern object detectors work under the hood, it is one of the better reference codebases you can dig into. It reproduces the original Single Shot MultiBox Detector architecture on VGG backbones at 300 and 512 input sizes, so you can trace how a single network produces box predictions across multi-scale feature maps and then filters them with Non-Maximum Suppression. The project is organized into separate modules for datasets, network definitions, and pre-processing, along with Caffe-converted checkpoints and a notebook that walks the whole pipeline on an image. That structure makes it genuinely useful for studying the algorithm, fine-tuning on Pascal VOC, or experimenting with other backbones. One honest caveat: this is a research-era TensorFlow 1 codebase that stopped seeing active development around 2021, so plan to use it for learning and reference rather than dropping it into a production service.

Articles for this project

No articles for this project yet.

To suggest a topic or contribute an article, contact us.

Related projects in this category