- show us your OS and MATLAB version.
- upload an MWE that demonstrates this problem (click the paperclip to upload files).
rng(seed) strange behaviour at first call of script after matlab startup
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I use matlab for machine learning with neural networks and have a strange behaviour with setting the seed fixed at the beginning of my script. This is to have reproducible results at every call of the script.
At first call of the script after start of matlab the results are different than the following. After the first call the following calls produce the same results as expected. All first calls after startup do also produce the same results than the other first calls.
I set a fixed seed at startup just with:
rng(0)
% rest of script
I hope somebody can help me.
Edit:
As asked in the comments I provide a minimum working example. script.m is the script and data.csv contains the data. In the script first the data is loaded, then the seed is set, then the data is adapted to the neural network (first column is output class and all other columns are input features) and then the network is trained and tested. The differences of the first and following calls can be examined by e.g. the variable percentErrors. On my system (Windows 10 Home (Version: 1803) 64-bit, Matlab R2016a) the first call of the script leads to a value of 0.96. The second and the following calls lead to a value of 0.98.
1 Kommentar
Stephen23
am 1 Jun. 2018
@Fabian Hirmann: this sounds like an interesting problem. Please:
Antworten (1)
Yuvaraj Venkataswamy
am 1 Jun. 2018
Bearbeitet: Walter Roberson
am 3 Jun. 2018
Use below command
RandStream.setDefaultStream(RandStream('mt19937ar','seed',1));
Siehe auch
Kategorien
Mehr zu Sequence and Numeric Feature Data Workflows finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!