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.
Asked
Active
Viewed 639 times
2
-
Possible duplicate of How to set the number of neurons and layers in neural networks – Aditya Mar 09 '18 at 17:51
3 Answers
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