What is Back propagation in Neural Networks?

Answer Posted / rasmi ranjan das

A back-propagation neural network is only practical in
certain situations. Following are some guidelines on when
you should use another approach:

Can you write down a flow chart or a formula that
accurately describes the problem? If so, then stick with a
traditional programming method.
Is there a simple piece of hardware or software that
already does what you want? If so, then the development
time for a NN might not be worth it.
Do you want the functionality to "evolve" in a direction
that is not pre-defined? If so, then consider using a
Genetic Algorithm (that's another topic!).
Do you have an easy way to generate a significant number of
input/output examples of the desired behavior? If not, then
you won't be able to train your NN to do anything.
Is the problem is very "discrete"? Can the correct answer
can be found in a look-up table of reasonable size? A look-
up table is much simpler and more accurate.
Are precise numeric output values required? NN's are not
good at giving precise numeric answers.
Conversely, here are some situations where a BP NN might be
a good idea:

A large amount of input/output data is available, but
you're not sure how to relate it to the output.
The problem appears to have overwhelming complexity, but
there is clearly a solution.
It is easy to create a number of examples of the correct
behavior.
The solution to the problem may change over time, within
the bounds of the given input and output parameters (i.e.,
today 2+2=4, but in the future we may find that 2+2=3.8).
Outputs can be "fuzzy", or non-numeric.

Is This Answer Correct ?    6 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which is the most straight forward approach for planning algorithms?

593


What are the disadvantages of depth-first search algorithm?

546


What is the bidirectional search algorithm?

569


Which algorithm inverts a complete resolution strategy?

571


What is software cycle? Give a diagrammatic representation?

504






What is the uniform cost search algorithm?

591


What is depth-first search algorithm?

568


Can you list some use cases where classification machine learning algorithms can be used?

526


What features would you use to build a recommendation algorithm for users?

578


Consider the following algorithm, where the array A is indexed 1 through n: int add_them ( int n , int A[ ] ) { index i , j , k ; j = 0 ; for ( i = 1 ; i <= n ; i++) j = j + A[i] ; k = 1 ; for ( i = 1 ; i <= n ; i++) k = k + k ; return j + k ; } (a) If n = 5 and the array A contains 2, 5, 3, 7, and 8, what is returned? (b) What is the time complexity T(n) of the algorithm?

1844


What is the iterative deepening depth-first search algorithm?

534


List the different algorithm techniques in machine learning?

503


What are the disadvantages of breadth-first search algorithm?

666


What’s your favorite algorithm, & can you explain it into me in less than a minute?

809


Explain me what's your favorite algorithm, and can you explain it to me in less than a minute?

675