I adapt neural network instead of train. Any one knows how I can see which stopping criteria causes to stop the network ? (nntraintool command does not work!)

조회 수: 1 (최근 30일)
When I use the example of the ANN toolbox with training the network in the matlab, I am able to see number of the Epoch, Time, Performance, Gradient, Mu, and Validation checks with "nntraintool" command and I can figure out which one stops the network. But when I change train to adapt,"nntraintool" does not work and I do not how I can see Epoch, Time, Performance, Gradient, Mu, and Validation checks and the one that stops the network. I was wondering if some one know it?
  댓글 수: 2
Sanaz
Sanaz 2013년 6월 25일
So it means when I use "adapt" and the network stops, is is not clear which criterion stops the network? Does "adapt" have the validation check criteria?

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2013년 6월 25일
If you use the command
[ net tr Y E Xf Af ] = train(net, x, t, Xi, Ai, EW);
tr = tr
yields training information on over 30 quantities.
tr.stop yields the stopping criterion.
However, if you use
[ net Y E Xf Af tr] = adapt(net, x, t, Xi, Ai);
tr = tr
only yields the training records of epoch and perf.
Don't expect more info than that using the GUI.
Thank you for formally accepting my answer
Greg
P.S. Details obtained using help, doc and type on train and adapt

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by