suddenly and together train by MATLAB
Show older comments
I have studied the artificial neural network models by matlab code as net = newff(PR,[S1 S2...SNl],{TF1 TF2...TFNl},BTF,BLF,PF),
In this code and nntool module in matlab, you can obtain the result for the specified number of neuron such as 2, 3, 4, 10 (default value) in specified neural network architecture such as feed forward, cascade or elman and other.
If you want to compare various numbers of neuron alternatives, you must try one by one to obtain comparative results for artificial neural network structure including various neuron numbers and specified neural network architecture such as feed forward, cascade or elman and other. This process can take a long time for comparison of different artificial neural network models. Is there any matlab code to suddenly and together train and obtain the results for various artificial neural network structures especially various number of neurons, Best regards for helping in this subjets..
Dr. ilker ERCANLI
Accepted Answer
More Answers (1)
Greg Heath
on 6 Mar 2018
I have had very few problems with a double for-loop approach that relies on default parameters except for
1. OUTER-LOOP over number of hidden nodes h = Hmin:dH:Hmax
2. INNER-LOOP over random initial weights i = 1:Ntrials
I have posted many, many regression, classification and timeseries examples in BOTH the NEWSGROUP (comp.soft-sys.matlab) and ANSWERS.
Search with one of
fitnet, patternnet, narxnet, narnet, etc
by including a subset of
greg, Hmax, Ntrials,
Hope this helps.
Thank you for formally accepting my answer
Greg
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!