I am looking for a written algorithm for the learning process of feed-forward neural network, with the levenberg-marquardt backpropagation. Can anyone can send me the exact algorithm?
Maybe it is interesting and helpful for You:http://penerbit.uthm.edu.my/ojs/index.php/JST/article/viewFile/262/141 as well as following http://www.mathworks.com/help/nnet/ref/trainlm.html . It is not my primary interest but hope I could suggest You some good readings.
I see You want to apply levenberg-marquardt approach in order to get fast solution! Am I right? I do think this will be useful for You: http://crsouza.blogspot.com/2009/11/neural-network-learning-by-levenberg_18.html
Levenberg-marquardt method is computationally expensive. I would suggest some alternate approximations such as the one given by Schraudolph in "Fast Curvature Matrix-Vector Products for Second-Order Gradient Descent"
Although LM is computationally expensive, it is the most widely used optimization algorithm (It is the default algorithm in Matlab's ANN Toolbox). In most cases LM converges very fast (in few epochs) and outperforms other training algorithms (GD, etc.) by many orders. Also, LM uses an approximation to the Hessian matrix in the following Newton-like update.