What numbers should we put for the layers. This is for google net, and it keeps giving us an error.
1 回表示 (過去 30 日間)
古いコメントを表示
Our project wants us to use google net to train. We have no idea what the meaning of this error is. What should we do to the layers in order to fix it?
1 件のコメント
Matt J
2023 年 5 月 10 日
Because your code is posted as an image, we cannot copy/paste and experiment with it.
回答 (1 件)
Himanshu
2023 年 5 月 24 日
Hello,
As per my understanding, you are facing an error while running the provided network structure script. The "unconnected input" error occurred due to the connections between the layers.
You can ensure that the layers are connected properly by using the following sample code:
% Create a layer graph
net = googlenet;
layers = net.Layers;
lgraph = layerGraph(layers);
% Connect the layers in the modified graph
lgraph = connectLayers(lgraph, 'input', 'conv1-7x7_s2');
lgraph = connectLayers(lgraph, 'conv2-3x3_reduce', 'inception_3a/output');
You can refer to the below documentation to learn more about "connectLayers" function in MATLAB.
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!