deep-learning-for-image-processing icon indicating copy to clipboard operation
deep-learning-for-image-processing copied to clipboard

为什么EfficientNetB7的depth_coefficient设置为3.1?

Open T990820 opened this issue 2 years ago • 0 comments

对EfficientNetB0到EfficientNetB7参数的详细定义在EfficientNet网络详解中。根据EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks中的公式3,可以得知在EfficientNetB7中,

r=γ^Φ=1.15^Φ=600/224=2.6786

Φ=log(2.6786)/log(1.15)=7.04

进而可以推出

depth_coefficient=d=α^Φ=1.2^7.04=3.6094≠3.1

我阅读了若干个关于EfficientNet的仓库的实现代码,发现几乎所有的实现代码都对EfficientNetB7中的depth_coefficient设置为3.1,所以我不确定上述推导过程是否正确。如果错误,正确的推导过程是什么呢?

T990820 avatar Nov 21 '23 16:11 T990820