ResNet101
ResNet101 is a deep convolutional neural network in the ResNet family, designed for image recognition tasks. Introduced in 2015 by Kaiming He and colleagues at Microsoft Research, it extends the idea of residual learning to deeper networks by using shortcut connections that perform identity mappings, allowing training of networks with many layers without suffering severe vanishing gradients. The 101 in the name indicates the total number of layers, counting 1x1, 3x3, and 1x1 convolutions inside bottleneck blocks and the final fully connected layer.
The architecture uses four stages of bottleneck residual blocks with 3, 4, 23, and 3 blocks respectively,
For alignment of dimensions, projections through 1x1 convolutions are used on the skip path when the number
ResNet101 is widely used as a feature extractor and pre-trained model; it helped set performance benchmarks