October 2018
Intermediate to advanced
368 pages
9h 20m
English
After the release of the second paper on ResNet [4], the original model presented in the previous section has been known as ResNet v1. The improved ResNet is commonly called ResNet v2. The improvement is mainly found in the arrangement of layers in the residual block as shown in following figure.
The prominent changes in ResNet v2 are:
BN-ReLU-Conv2D
Figure 2.3.1: A comparison of residual blocks between ResNet v1 and ResNet v2
ResNet v2 is also implemented in the same code as resnet-cifar10-2.2.1.py:
def resnet_v2(input_shape, depth, ...