Robert-JunWang / Pelee

Pelee: A Real-Time Object Detection System on Mobile Devices
Apache License 2.0
885 stars 254 forks source link

19x19 features are fed twice #44

Open xonobo opened 6 years ago

xonobo commented 6 years ago

According to dot file I obtained for the deploy_merged.prototxt the 19x19 feature maps are fed to confidence and location extraction layers twice. Is it intentional or a copy/paste error?

pelee deploy_merged.pdf

ujsyehao commented 6 years ago

Yeah, it is intentional, because author removes 38x38 feature map, so use 19x19 feature map twice.

Robert-JunWang commented 5 years ago

It is an intentional design. But if you want to improve the performance of the small object detection, my suggestion is to use 38x38 without ResBlock instead of using 19x19 twice. The actual speed is almost the same.

varghesealex90 commented 5 years ago

How do I pass 38x38 feature map instead of the duplicate 19x19 feature map?