+The connection pattern between base layers and rolling layers of ResnNet-RRC can be found out by analyzing such connection pattern of VGG-RRC. In the VGG16 base net part of the VGG-RRC, conv4_3 is the final convolution layer of the second-last convolutional block, and fc7 is the second-last non-pooling layer of all VGG16 layers. conv4_3 is connected to conv4_3r, the first rolling layer, and fc7 is connected to fc7r, the second rolling layer. Here, fc7_relu which is the layer that performs ReLU activation on the output of fc7 is branched out and connected to conv6_1, the first intermediate layer. From this, we can infer that res4b, res5b, and res5b_relu can be used for connection. res4b is connected to conv4_3r since it is the final convolution layer of the second-last convolutional block, and res5b is connected to fc7r since it is the second-last non-pooling layer of all Resnet18 layers. res5b_relu is the layer that performs ReLU activation on the output of res5b, so it is branched out and connected to conv6_1, the first intermediate layer.
0 commit comments