how to solve this error? in matlab
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
net.layers{1} = struct(...
'name', 'conv1', ...
'type', 'conv', ...
'weights', {{randn(10,10,3,2,'single'), randn(2,1,'single')}}, ...
'pad', 0, ...
'stride', 1) ;
net.layers{2} = struct(...
'name', 'relu1', ...
'type', 'relu') ;
4 件のコメント
Fawad Ahmad
2019 年 7 月 22 日
Torsten
2019 年 7 月 22 日
net.layers{1} = struct2cell(struct(...))
Fawad Ahmad
2019 年 7 月 22 日
Peter Jarosi
2019 年 7 月 22 日
編集済み: Peter Jarosi
2019 年 7 月 22 日
I can't reproduce your error. If I copy your code in my Matlab it works properly.
It looks like this is a part of your cnn_wrap function, therefore most likely variable net is in the argument list of your function, and predefined in a different way. But we don't know how you called cnn_wrap function from your main script and what the original content of variable net was.
回答 (0 件)
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!