How to access the performance plot for shallow net after training?
이전 댓글 표시
I am training a shallow net on HPC. After the training is done, I get the saved trained neural net. Is there a way to get the performace plot from the saved neural net?
net = train(net,input.',output.','useParallel','yes');
trained_net = net
save trained_net
In this is post , it is shown that by using tr we can analyze the netwrok after the training. I think it's only true if you are training on local machine. When you train on HPC and you are only downloaing a trained net, I do not know how to do so. Can someone please help me out?
답변 (1개)
Mahesh Taparia
2020년 1월 9일
Hi
You can access the performance parameters after training process by storing them in a variable. To do this, you need to run the code in the following manner:
[net, information] = train(net,input.',output.','useParallel','yes');
save('Information.mat','information') %You can save for future use.
This information variable is a struct and it will contain the performance parameters. For more information, you can visit the documentation page of train here.
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!