フィルターのクリア

Differrence between feed forward & feed forward back propagation

12 ビュー (過去 30 日間)
omar belhaj
omar belhaj 2015 年 2 月 18 日
コメント済み: YERRUPALLI GANESH 2020 年 12 月 19 日
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
Greg Heath 2019 年 2 月 14 日
A USEFUL POST
GREG
YERRUPALLI GANESH
YERRUPALLI GANESH 2020 年 12 月 19 日
Difference between levenberg matquardt and feed forward backpropagation algorithm

サインインしてコメントする。

採用された回答

Greg Heath
Greg Heath 2015 年 2 月 18 日
編集済み: Greg Heath 2015 年 2 月 22 日
1. Regardless of how it is trained, the signals in a feedforward network flow in one direction: from input, through successive hidden layers, to the output.
2. Given a trained feedforward network, it is IMPOSSIBLE to tell how it was trained (e.g., genetic, backpropagation or trial and error)
3. A feedforward backpropagation net is a net that just happened to be trained with a backpropagation training algorithm. The backpropagation training algorithm subtracts the training output from the target (desired answer) to obtain the error signal. It then goes BACK to adjust the weights and biases in the input and hidden layers to reduce the error.
4. Current examples of feedforward nets are
a. FITNET for regression and curve-fitting which calls the generic FEEDFORWARDNET
b. PATTERNNET for classification and pattern-recognition which calls the generic FEEDFORWARDNET
c. FEEDFORWARDNET
5. OBSOLETE examples of feedforward nets are
a. NEWFIT for regression and curve-fitting which calls the generic NEWFF
b. NEWPR for classification and pattern-recognition which calls the generic NEWFF
c. NEWFF
6. The default training functions for the above algorithms use backpropagation. However, the designer can train the nets any way they want.
7. The Neural Network Toolbox does not offer a genetic algorithm (GA). However, there are posts to the NEWSGROUP and ANSWERS regarding training with a GA
SEARCH WORDS NEWSGROUP HITS ANSWERS HITS
NEURAL GA 69 39
NEURAL GENETIC 132 56
8. None of the above are recommended for timeseries forecasting. The CURRENT timeseries forecasting algorithms are
a. TIMEDELAYNET: Feedforward net with output that only depends on current and past inputs
b. NARNET: Feedback net with output that only depends on past outputs
c. NARXNET: Feedback net with output that depends on BOTH past outputs as well as current and past inputs
Hope this helps.
Thank you for formally accepting my answer
Greg
P.S. Online documentation for any function can be obtained using the commands help, doc and type. For example
help fitnet
doc fitnet
type fitnet
  4 件のコメント
omar belhaj
omar belhaj 2015 年 2 月 24 日
So please i will just to know fitnet() and feedforwardnet() are the similar commands to create the neueral networks?? because i found a lot of researches use feedforwardnet() instead fitnet()for prediction issues !!!!
Greg Heath
Greg Heath 2015 年 4 月 5 日
編集済み: Greg Heath 2015 年 4 月 5 日
Although both FITNET and PATTERNNET call FEEDFORWARDNET, each have different defaults w.r.t. their specific function, i.e., regression/curve-fitting vs classification/pattern-recognition.
So, just use FITNET and PATTERNNET.

サインインしてコメントする。

その他の回答 (2 件)

khan
khan 2015 年 2 月 18 日
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
omar belhaj 2015 年 2 月 18 日
I ask whcich one is appropraite to use for forecasting ?? whcich the best ??
Greg Heath
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
Shireen Shah 2018 年 5 月 29 日
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
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSequence and Numeric Feature Data Workflows についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by