how to fix constant iteration in neural networks
이전 댓글 표시
when i am trying to train my neural network using levenberg marquardt algorithm it shows different iteration at each times how do i fix my neural network with constant iteration period
댓글 수: 3
Star Strider
2014년 9월 16일
Do you mean epochs or training time?
Thirunavukkarasu
2014년 9월 19일
Shreeja Shetty
2017년 7월 20일
I am currently facing a similar issue as mentioned above. Can someone please provide a solution.
채택된 답변
추가 답변 (2개)
Greg Heath
2014년 9월 17일
If you train multiple nets in a loop you can duplicate previous runs by keeping track of the state of the random number generator. That is why I always specify an initial random number state, before the outer loop. For examples, search on
greg rng(0)
or
greg rng('default')
Hope this helps.
Thank you for formally accepting my answer
Greg
댓글 수: 5
Greg Heath
2014년 9월 19일
What is this code supposed to do?
Thirunavukkarasu
2014년 9월 29일
Greg Heath
2014년 12월 12일
Initialize the rng before the training command
[ net tr ] = train(...)
which randomizes the data division and initial weights.
Parul Singh
2017년 4월 26일
rng default- net gives different outputs each time it is run
rng (variable number) - number of iterations remain the same at 1000
We want to vary the number of iterations to achieve best output and then for a constant number of iterations, we want the network to get the same output each time it is nrun.
Please help.
Greg Heath
2017년 7월 20일
Given what I have learned in 37 years of NN design, what you want to do is illogical. Please reread what I have written.
Greg
Cesare Trematore
2017년 12월 19일
0 개 추천
I do not know if I fully agree. I was running a pattern recognition neural network with the trainbr option. The train perfomance kept improving up to 1000 epochs, but after about 200 epochs the test perfomance started worsening. In this cases would be useful to have the option to stop the training after a prefixed number of epochs.
댓글 수: 1
Greg Heath
2017년 12월 22일
That option is available.
However, why in the world are you using trainbr for pattern recognition?
What happens when you use patternet with all defaults except number of hidden nodes and initial RNG state?
Search the NEWSGROUP and ANSWERS with
greg patternnet
Hope this helps.
Greg
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!