keras-team / keras-applications

Reference implementations of popular deep learning models.
Other
2k stars 910 forks source link

Parameter `depth_multiplier` doesn't do anything in MobileNetV2 API #63

Closed xunkai55 closed 5 years ago

xunkai55 commented 5 years ago

In the API of MobileNetV2, there's a parameter depth_multiplier but it seems useless, which is confusing.

taehoonlee commented 5 years ago

While depth_multiplier is called the resolution multiplier in the V1 paper and used in its implementation, the depth_multiplier has been depreciated since V2 as described in the V2 paper. Thus, the parameter depth_multiplier in MobileNetV2 should be removed. Thank you for the report, @xunkai55.