Loading and using pretrained networks
조회 수: 3 (최근 30일)
이전 댓글 표시
I'm working with sets of 8 neural networks and when I load them all and try to use them Matlab doesn't recognise them.
댓글 수: 1
Raunak Gupta
2020년 11월 12일
Hi,
Can you provide the specific code you are using and the error message displayed in the Command Window. This will help in understanding the issue.
채택된 답변
Raunak Gupta
2020년 11월 17일
Hi,
From the example mentioned in the follow up, I think the trained network are not saved properly. Let say you have four trained networks in the workspace naming net1, net2, net3, net4. Then to save them in a single matrix you can use
save('networks.mat','net1','net2','net3','net4');
Afterwards if you want to load the networks into the workspace following command can be useful
load networks.mat
This will load all networks separately into the workspace.
댓글 수: 0
추가 답변 (2개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!