Could we use Bottleneck to achieve 50 layers network even 110 layers network?
fansia opened this issue · 1 comments
fansia commented
If my understanding is right, each Residual basic block contains 2 layers and each bottleneck block contain 3 layers. Assume, we are going to build 50 layers
- Use Basic Block
=> (56 -2) / 2 = 27 --> need 27 basic blocks - Use Bottleneck Block
=> (56-2) / 3 = 24 --> need 24 bottleneck blocks
Thank you.
JiaRenChang commented
Hi,
Yes, it's right.
Jia-Ren