2

I am trying to build a simple multi layer perceptron Neural Network in Java, but apparently my calculations are off. I am looking for a beginner-level tutorial which can help me to understand how to properly calculate forward and backward pass, preferably with examples.

user47432
  • 23
  • 2

3 Answers3

1

One of articles which helped me a lot is : A Step by Step Backpropagation Example by Matt Mazur. It covers forward and backward pass of MLP. I hope that helps.

Another great source is http://www.deeplearningbook.org/

koryakinp
  • 436
  • 1
  • 5
  • 14
0

Apart the mentioned resources, this also might be of help: MLP Java example. It's from the University of Sydney and includes theory and a Java implementation.

TitoOrt
  • 1,862
  • 13
  • 23
0

You can follow this tutorial Neural Network: A Complete Beginners Guide from Scratch. It's covered the very basics and also shared the code.

Milon
  • 1