How to train a feedfordward neural network with error weights
1 次查看(过去 30 天)
显示 更早的评论
How to train a feedfordward neural network with error weights....
0 个评论
采纳的回答
Greg Heath
2016-2-27
Use the command window
help mse
doc mse
Hope this helps.
Thank you for formally accepting my answer
Greg
0 个评论
更多回答(1 个)
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)?
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!