Differrence between feed forward & feed forward back propagation
古いコメントを表示
I used neural netowrk MLP type to pridect solar irradiance, in my code i used fitnet() commands (feed forward)to creat a neural network.But some people use a newff() commands (feed forward back propagation) to creat their neural network. please what's difference between two types?? :
net=fitnet(Nubmer of nodes in haidden layer); --> it's a feed forward ?? true??
net=newff(Nubmer of nodes in haidden layer); ---> it's a feed forward back propagation ??
Help me please wchich one can i choose for my case (prediction problem)???!!! Who appripriate??
Best regards
2 件のコメント
Greg Heath
2019 年 2 月 14 日
A USEFUL POST
GREG
YERRUPALLI GANESH
2020 年 12 月 19 日
Difference between levenberg matquardt and feed forward backpropagation algorithm
採用された回答
その他の回答 (2 件)
khan
2015 年 2 月 18 日
0 投票
what you said it suggest that the new function have both forward and backward propagation in the same function. Where is the old have only forward pass. You should right click and select help on each of them and you will see.
2 件のコメント
omar belhaj
2015 年 2 月 18 日
Greg Heath
2015 年 4 月 5 日
@Khan
No. the new functions are just revised versions of the old ones. If you use the commands DOC, HELP, and/or TYPE, you will see that NEWFIT, NEWPR and NEWFF are OBSOLETE and as such, will no longer be maintained by MATLAB.
@omar:
For forecasting/predicting the future, use TIMEDELAYNET(only inputs), NARNET(only output feedback) or NARXNET(both inputs and output feedback). Again, use DOC, HELP, and/or TYPE for details.
Greg
Shireen Shah
2018 年 5 月 29 日
0 投票
can you please tell me which command(newff or feedforwardnet) is good choice to be used for channel estimation in OFDM using neural networks?
1 件のコメント
Greg Heath
2018 年 10 月 21 日
Use
FITNET for regression
and
PATTERNNET for classification
Both are special cases of FEEDFORWARDNET.
Corresponding NEWFIT, NEWPR and NEWFF are obsolete and have been replaced by the above.
カテゴリ
ヘルプ センター および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!