Object Detection in Keras

Implementing Single Shot Detector (SSD) in Keras: Part VI — Model Evaluation

Evaluating a trained SSD model

Socret Lee
Towards Data Science
11 min readJun 26, 2021

--

mAP of SSD300-VGG16 trained on PASCAL VOC 2007 trainval evaluated on test set. Image by Author.

I. Introduction

In previous parts of this series, we took a deep dive into the concepts behind SSD and how those concepts are implemented in code. Through that, we were able to…

--

--