vietnh1009 / SSD-pytorch

SSD: Single Shot MultiBox Detector pytorch implementation focusing on simplicity
MIT License
164 stars 49 forks source link

Default Bounding Box Priors #8

Closed anujdutt9 closed 2 months ago

anujdutt9 commented 2 years ago

Hi,

Thanks for your implementation. This makes understanding the model much more easier. I did notice one thing though. In the paper, the authors mention about defining default bounding boxes as priors and define different aspect ratios and scales for the same as well. Then during training they calculate the offset values between the priors with the overlap greater than a threshold w.r.t the ground truth bounding boxes and use that to calculate the localization loss. Although, this implementation trains and works well, but I couldn't find the use of default bounding boxes anywhere. Am I missing something here?

Thanks.