Mobilenet vs resnet

Hi @tarunsaxena1000

In ResNet50, relu is used for introducing non-linearity. However, in MobileNetV2 the aim is to preserve information and avoid losing important features.

MobileNetV2 tries to keep efficiency and reduce computational complexity, relying on other layers. ResNet uses convolutions in skip connections due to its emphasis on deeper and wider residual learning.

Hope this helps!

2 Likes