liuzhuang13 / DenseNet

Densely Connected Convolutional Networks, In CVPR 2017 (Best Paper Award).
BSD 3-Clause "New" or "Revised" License
4.69k stars 1.06k forks source link

A question about network structure #39

Closed linquanxu closed 6 years ago

linquanxu commented 6 years ago

Hi, I want to design a DenseNet which has the smalle number of layers.(e.g. L=30 or another). How to set each dense block and k (L denotes the network depth and k its growth rate.)? Are there any rules?

liuzhuang13 commented 6 years ago

Hi @linquanxu , in my opinion, for a small network, the most simple rule is to make every dense block have equal number of layers and the same k, and it will probably work well.

linquanxu commented 6 years ago

Hi, @liuzhuang13 , thanks for your relay. I close this issue now.