details about the resnet 50 structure

9 次查看(过去 30 天)
Hi, can someone say what does it exactly means. Resnet 50 is 50 layers deep. this 177 is the total number of layers present in network?
I am not able to unnderstan this completely.

回答(1 个)

Akshat
Akshat 2023-9-20
Hi,
As per my understanding of the question, you want to know why are there 177 layers in Resnet 50, where Resnet 50 is a 50 layers deep model.
The reason is that in the 50 layers which are counted in Resnet 50, the pooling layers (max and average) and the activation functions (ReLU) aren’t counted towards the total layers. In order to know what all layers are there in the MATLAB implementation of Resnet50, you can type the following lines in the command window of MATLAB.
net = resnet50();
net.Layers
This is the documentation of Resnet50 in the Deep learning toolbox of MATLAB:
You can refer this link to get to know about the layers in general:
Hope this helps!

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by