How can I reuse the same neural network to recreate the same results I had while training/creating the network?
5 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I am new to neural networking, so my question may sound stupid.
I have trained/created a neural network, I have saved the script of the network, but each time I run the script, it gives different R values. How can I get the same R value I had while training the network and how do I plug in new input data to see the results by using the same network.
0 件のコメント
採用された回答
Greg Heath
2014 年 3 月 16 日
I don't think you want to save the script.
You want to save the net
save net
Hope this helps.
Greg
0 件のコメント
その他の回答 (2 件)
the cyclist
2014 年 3 月 5 日
Presumably you need to set the random number generator seed.
If you have a relatively new version of MATLAB, you can do this with the rng() command, for example, put
rng(1)
at the beginning of your code.
doc rng
for details.
2 件のコメント
Karthik
2014 年 3 月 6 日
1 件のコメント
Greg Heath
2014 年 3 月 8 日
Please do not use the ANSWER box for comments. In this case
1. copy your comments in the answer bos
2. paste them in the comment box
3. delete your answer box
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!