Why Neural Network Output is different every time???

In Neural network tool Why it shows every time with different output???
eg:plotsomhits

 Akzeptierte Antwort

Greg Heath
Greg Heath am 15 Apr. 2015

1 Stimme

Initial weights and data division are random unless you initialize the random number generator to the same state before training.

3 Kommentare

M J
M J am 16 Jul. 2020
Bearbeitet: M J am 16 Jul. 2020
Hi, would using something like :
rng(0,'combRecursive');
right before training the CNN work ?
Thanks a lot !
I just use
close all, clear all, rng(0)
as the 1st line of my code.
Hope this helps
Greg
M J
M J am 17 Jul. 2020
Bearbeitet: M J am 17 Jul. 2020
Thanks a lot for the answer. The thing is that I intend to randomly shuffle my data as part of the training process, and compare validation accuracies associated with different training/validation combinations. Wouldn't that (writing it as the 1st line of the code) affect the random shuffling part too?
Best.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

SIDDHARAM GADDI
SIDDHARAM GADDI am 16 Apr. 2015

3 Stimmen

just simply paste this code before traning the data..
rng('default');
You will get same result every time....

Kategorien

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by