Differrence between feed forward & feed forward back propagation

Technical Source
2 min readApr 26, 2021

--

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??

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

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.

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet