How to train a feedfordward neural network with error weights

5 visualizzazioni (ultimi 30 giorni)
How to train a feedfordward neural network with error weights....

Risposta accettata

Greg Heath
Greg Heath il 27 Feb 2016
Use the command window
help mse
doc mse
Hope this helps.
Thank you for formally accepting my answer
Greg

Più risposte (1)

Batool Abbas
Batool Abbas il 13 Giu 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)?

Categorie

Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by