balancap / SSD-Tensorflow

Single Shot MultiBox Detector in TensorFlow
4.11k stars 1.89k forks source link

num_anchors = len(sizes) + len(ratios) #308

Closed xbcReal closed 5 years ago

xbcReal commented 5 years ago

According to my understanding about the origin paper,the num_anchors should equal to len(ratios)+1.Does anybody know why in this implemention, num_anchors = len(sizes) + len(ratios)?