Implementing a Single Shot Detector Model in Tensorflow 2.0

Single Shot MultiBox Detector (SSD) detects objects in images using a single deep neural network. In this blog post I will cover how to implement SSD300 (meaning images are scaled to 300x300 before being fed to the model) detector presented here in Tensorflow 2.0.

More …