When I use building_block_v1 or bottleneck_block_v1, the last several layers are: block: Conv, Batch Norm, add, ReLU, (https://github.com/tensorflow/models/blob/master/official/resnet/resnet_model.py#L143 ) then, Batch Norm, ReLU (https://github.com/tensorflow/models/blob/master/official/resnet/resnet_model.py#L521) This seems wrong. The last BN and ReLU appears only in Resnet_v2.