which Matlab command shows layer structure of a CNN ?
2 ビュー (過去 30 日間)
古いコメントを表示
Daniele Chiericati
2017 年 7 月 31 日
コメント済み: Daniele Chiericati
2017 年 7 月 31 日
which Matlab command shows layer structure of a CNN ?
0 件のコメント
採用された回答
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 Center および File Exchange で Image Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!