don't use random train of som network
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
Greg Heath
2014년 11월 7일
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
Greg Heath
2014년 11월 9일
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.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!