details about the resnet 50 structure

8 ビュー (過去 30 日間)
new_user
new_user 2022 年 5 月 18 日
回答済み: Akshat 2023 年 9 月 20 日
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 Center および File ExchangeImage Data Workflows についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by