ShuangXieIrene / ssds.pytorch

Repository for Single Shot MultiBox Detector and its variants, implemented with pytorch, python3.
MIT License
571 stars 166 forks source link

ASPECT_RATIOS #23

Closed isalirezag closed 6 years ago

isalirezag commented 6 years ago

Whay the aspect ratios are define like this:

ASPECT_RATIOS: [[1, 2, 3], [1, 2, 3], [1, 2, 3], [1, 2, 3], [1, 2], [1, 2]] can any body explain it please?

Also i see in another place it also define like:

ASPECT_RATIOS: [[[0.1,0.1], [0.2,0.2], [0.3,0.3], [0.5,0.5], [0.9,0.9]]]

I am not sure why? plus should not aspect ratio be like 1:2 ....

foreverYoungGitHub commented 6 years ago

just 2 way to initialize the aspect ratio. Please check the code.