different result is obtained for the same input using self-organizing map
4 ビュー (過去 30 日間)
古いコメントを表示
I used Neural Network Toolbox to train a self-organizing map for a given data set. I found that each run gave me a quite different result, like different "sample hits map". How to understand this difference? I just followed the standard routine, like
net = selforgmap([8 8]);
net = train(net, testInput);
0 件のコメント
回答 (1 件)
Greg Heath
2012 年 3 月 3 日
Initialize the random number generator to the same intial state; otherwise the results will be different.
Hope this helps.
Greg
1 件のコメント
Mahmoud ELKAFAFY
2019 年 10 月 14 日
But, if you change the initialization of random number generator (e.g., rng(7) instaed of rng(3) for insatance), you will still get different results.
参考
カテゴリ
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!