don't use random train of som network
1 view (last 30 days)
Show older comments
train for som network use random method (the results differ for the same input data) thought its net.trainFcn = trainbu (not trainr). How to get the same results? I tried chaneged to trains but failed.
0 Comments
Accepted Answer
Greg Heath
on 7 Nov 2014
If you initialize the random number generator to the same state, the results will be duplicated.
help rng
doc rng
Hope this helps.
Thank you for formally accepting my answer
Greg
2 Comments
Greg Heath
on 9 Nov 2014
If you enter the command
net = selforgmap %NO SEMICOLON
you can obtain all of the default properties and settings.
The result depends on the order of processing the points. Randomness mitigates the possibility of not finding a good solution provided you create enough independent designs. Just keep training a single design will probably not improve performance because you may be lying in a deep local min that is much higher than the global min.
Again, multiple designs with different random orderings is, in general, the best learning technique.
More Answers (0)
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows 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!