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!