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!