필터 지우기
필터 지우기

Can I see the Training Plots from a neural network later?

조회 수: 22 (최근 30일)
Joan M. Maura
Joan M. Maura 2023년 3월 3일
편집: Abhijeet 2023년 3월 6일
Hello, I am working on a neural network and after every train I get this pop up window with the training results, diagram, progress and plots.
I closed the window by mistake, how can I get the perfomance plots and the regression plot? And the data from the training process table? If I train again with the same parameters it will be a different net, I would like to work with that one.
Thanks
JM

채택된 답변

Abhijeet
Abhijeet 2023년 3월 6일
편집: Abhijeet 2023년 3월 6일
Hi,
It is not possible to retrieve the plots and data from a previous training data without prior saving.
You can save and later view training plots from a neural network in MATLAB.During training, MATLAB can display various plots that show the progress of the training process. These plots can provide valuable insights into the network's performance and help you identify any issues that need to be addressed.
To save the training plots, you can use the savefig function in MATLAB to save each figure as a .fig file. For example, if you have a figure named trainingPlot, you can save it as follows:
savefig('trainingPlot.fig')
This will save the figure in the current directory as a .fig file that you can later load and view.
To view the saved training plots, you can use the openfig function in MATLAB. For example,
openfig('trainingPlot.fig')
Thanks

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by