How to train a feedfordward neural network with error weights

1 次查看(过去 30 天)
How to train a feedfordward neural network with error weights....

采纳的回答

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

更多回答(1 个)

Batool Abbas
Batool Abbas 2021-6-13
>> 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)?

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by