details about the resnet 50 structure
조회 수: 3 (최근 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.
댓글 수: 0
답변 (1개)
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!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!