How to train a feedfordward neural network with error weights
1 view (last 30 days)
Show older comments
bruno di gaetano
on 26 Feb 2016
Answered: Batool Abbas
on 13 Jun 2021
How to train a feedfordward neural network with error weights....
0 Comments
Accepted Answer
Greg Heath
on 27 Feb 2016
Use the command window
help mse
doc mse
Hope this helps.
Thank you for formally accepting my answer
Greg
0 Comments
More Answers (1)
Batool Abbas
on 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 Comments
See Also
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!