Block Layer
Stack multiple blocks together to create a block layer in ResNet.
We'll cover the following...
Chapter Goals:
- Learn how a layer of blocks is organized
- Understand the function for creating a layer of blocks
A. Block layers
A ResNet model is made up of four block layers. Each block layer will contain a different number of blocks, depending on the total number of weight layers in the ResNet model. For example, an 18 layer ResNet model has 2 blocks in each block layer.
The blocks within each block layer are connected, so the output of block ...