The Backpropagation algorithm

If there are multiple layers in a neural network the inner layers have neither target values nor errors. This problem remained unsolved until the 1970s when mathematicians found the backpropagation algorithm to be usable for this particular problem. Backpropagation provides a way to train neural networks with any number of hidden layers. The neurons don’t […]

Feedforward neural networks

I am only covering feedforward neural networks in this project. General features of such networks are: Neurons are grouped into one input layer,  one or more hidden layers and an output layer. Neurons are not connecting to each other within the same layer. Each neuron of a hidden layer connects to all the neurons of […]