ShuangXieIrene / ssds.pytorch

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

Structure about Feature map in SSD-Mobilenet #17

Open liekejiang opened 6 years ago

liekejiang commented 6 years ago

I found that the first feature layer output is 1919 and last two layers both give a 11 size output, dose it correct? Why choosing such a small size comparing to the original structure?

lzx1413 commented 6 years ago

It follows the structure in mobilenet parper.

liekejiang commented 6 years ago

@lzx1413 I wonder that if get the feature layer from the previous layer in mobilenet, than we could get larger feature layer, maybe we could get better result

lzx1413 commented 6 years ago

@liekejiang Despite the computation cost, features with feature stride 8 may have not large enough receptive field to handle the smallest object in the image. Besides, features with stride 8 are so shallow that may not have enough semantic presentations. But this will also enlarge the search space for objects, which is good for the recall rate. You can try this to see the result at last.