which Matlab command shows layer structure of a CNN ?

조회 수: 2 (최근 30일)
Daniele Chiericati
Daniele Chiericati 2017년 7월 31일
댓글: Daniele Chiericati 2017년 7월 31일
which Matlab command shows layer structure of a CNN ?

채택된 답변

Moses Wayne
Moses Wayne 2017년 7월 31일
From my understanding, you are trying to view the layer structure of a convolutional neural network. Assuming you've stored the CNN in a variable such as "net", the layer structure can be viewed by calling ".Layers" on your neural net. For example:
net = alexnet;
layers = net.Layers;
"layers" now holds an array of the layers in your CNN (in this case alexnet). You can then view this layer array by displaying it with the disp() call. The documentation for convolutional neural networks can be found here. Some more examples of working with the layers of a CNN to do image classification can be found here .
I hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by