get matlab nural network parameter after training
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (2)
Shashank Prasanna
am 28 Jul. 2013
Everything you want is usually within the net object. Here is an example:
[x,t] = simplefit_dataset;
net = fitnet(10)
net = train(net,x,t);
net.trainParam
You can access epochs for example as follws:
net.trainParam.epochs
Chika Maduabuchi
am 13 Okt. 2021
0 Stimmen
Please, how do I train and store a set of parameters (weights) for my neural network?
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!