Whenever i run my neural network I get different result in nftool
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I built my neural network using only nftool without writing code.Whenever i run my neural network I get different result. What can I do to have the same result?
0 comentarios
Respuestas (1)
Walter Roberson
el 23 de Ag. de 2018
This is expected. The default initialization function for weights is random.
You can use rng() before every run that initializes the weights, or you can use a custom weight initialisation that is not random.
8 comentarios
Walter Roberson
el 24 de Ag. de 2018
You need to pass a seed to rng() . Like
rng(12345);
Ver también
Categorías
Más información sobre Sequence and Numeric Feature Data Workflows en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!