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

49 views (last 30 days)
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

Accepted Answer

Abhijeet
Abhijeet on 6 Mar 2023
Edited: Abhijeet on 6 Mar 2023
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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!