get matlab nural network parameter after training
古いコメントを表示
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
採用された回答
その他の回答 (2 件)
Shashank Prasanna
2013 年 7 月 28 日
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
2021 年 10 月 13 日
0 投票
Please, how do I train and store a set of parameters (weights) for my neural network?
カテゴリ
ヘルプ センター および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!