You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This repository contains codes of the reimplementation of [SSD: Single Shot Mult
4
4
5
5
There are already some TensorFlow based SSD reimplementation codes on GitHub, the main special features of this repo inlcudes:
6
6
7
-
- state of the art performance when training from VGG-16 pre-trained model (trained model will be released later).
7
+
- state of the art performance(~77%mAP) when training from VGG-16 pre-trained model (SSD300-VGG16).
8
8
- the model is trained using TensorFlow high level API [tf.estimator](https://www.tensorflow.org/api_docs/python/tf/estimator/Estimator). Although TensorFlow provides many APIs, the Estimator API is highly recommended to yield scalable, high-performance models.
9
9
- all codes were writen by TensorFlow ops (no numpy operation) to ensure the performance and portability.
10
10
- using ssd augmentation pipeline discribed in the original paper.
@@ -55,5 +55,26 @@ All the codes was tested under TensorFlow 1.6, Python 3.5, Ubuntu 16.04 with CUD
55
55
56
56
This repo is just created recently, any contribution will be welcomed.
57
57
58
+
## Results (VOC07 Metric)
59
+
60
+
This implementation(SSD300-VGG16) yield **mAP 76.94%** on PASCAL VOC 2007 test dataset, the details are as follows:
You can download the trained model(VOC07+12 Train) from [GoogleDrive](https://drive.google.com/open?id=1yeYcfcOURcZ4DaElEn9C2xY1NymGzG5W) for further research.
69
+
70
+
Here is the training logs and some detection results:
0 commit comments