MATLAB: Get matlab nural network parameter after training

Deep Learning Toolboxneural networkparametertrain

hi i use neural network of matlab for classification. i want to know how can i store network parameter(such as epoches,time,mse,…)in a matrix after training? thanks alot

Best Answer

The objects net and tr contain all of the parameters needed for training and evaluation The command
net = net
leads to recovering all of the pretraining parameters.
The command
tr = tr
leads to recovering all of the posttraining parameters and results.
Thank you for formally accepting my answer
Greg