how to get fix output for neural network?
Ältere Kommentare anzeigen
hi, i am new to neural network. as i run my program every time different outputs are there.so can any one tell me how to get same output which is best. thanks
Antworten (2)
Greg Heath
am 4 Mär. 2012
0 Stimmen
In general, weight initialization and data division involve random numbers. Therefore
1. Intialize the RNG to the same state whenever you want to reproduce results.
2. Train in a double loop. I typically use 10 trials for every value of H (number of hiden nodes).
3. Tabulate the results.
4. Find the best result. You can retrain to get the weights by counting how many times the RNG state has changed since initialization.
5. A better generalizing alternative is to find the several best designs and average their outputs. Search the term "ensemble".
Hope this helps.
Greg
1 Kommentar
Punam
am 6 Mär. 2012
Greg Heath
am 7 Mär. 2012
0 Stimmen
RNG = random number generator
ENSEMBLE = a combination of neural nets.
Search the term in comp.ai.neural-nets and comp.soft-sys.matlab.
Hope this helps.
Greg
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!