How to properly train the network MPL?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Veronika
am 28 Feb. 2015
Kommentiert: Veronika
am 19 Mär. 2015
Dear all,
I have this code:
P = [c{1,:}];
T = [c{2,:}];
net1 = newff(P,T,20);
net1.trainparam.epochs = 100;
net = train(net1,P,T);
P = s{1,7};
Y = sim(net1,P);
After running the code, nothing happens. Just Comand Window reports name of file. Why not start training network? Does anyone have any idea? How to make this network trains?
0 Kommentare
Akzeptierte Antwort
Greg Heath
am 18 Mär. 2015
Bearbeitet: Greg Heath
am 18 Mär. 2015
You seem to repeatedly make this same mistake:
net = train(net1,P,T);
Y = sim(net1,P);
Now: There are 2 nets: net1 and net
Question: which is trained and which is untrained?
PS: MLP(Multi-Layer-Perceptron), not MPL
Weitere Antworten (0)
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!