How to train a feedfordward neural network with error weights
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
bruno di gaetano
am 26 Feb. 2016
Beantwortet: Batool Abbas
am 13 Jun. 2021
How to train a feedfordward neural network with error weights....
0 Kommentare
Akzeptierte Antwort
Greg Heath
am 27 Feb. 2016
Use the command window
help mse
doc mse
Hope this helps.
Thank you for formally accepting my answer
Greg
0 Kommentare
Weitere Antworten (1)
Batool Abbas
am 13 Jun. 2021
>> input=data(:,1:10);
>> output=data(:,11);
>> testinput=input(1:870,:);
>> input=input';
>> output=output';
>> testinput=testinput';
>> net=feedforwardnet(12);
>> net=train(net,input,output);
>> y=net(testinput);
>> testoutput=y';
kindly reply to me as soon as possible. Is this code is FEED FORWARD (OR) FEED FORWARD AND BACK PROPAGATION (Both)?
0 Kommentare
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!