How to train a feedfordward neural network with error weights

1 回表示 (過去 30 日間)
bruno di gaetano
bruno di gaetano 2016 年 2 月 26 日
回答済み: Batool Abbas 2021 年 6 月 13 日
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 Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by