Neural Network v0.1.2 NeuralNetwork.Network
Contains layers which makes up a matrix of neurons.
Summary
Functions
Activate the network given list of input values
Return the network by pid
Pass in layer sizes which will generate the layers for the network. The first number represents the number of neurons in the input layer. The last number represents the number of neurons in the output layer. [Optionally] The middle numbers represent the number of neurons for hidden layers
Set the network error and output layer’s deltas propagate them backward through the network. (Back Propogation!)
Update the network layers
Functions
Pass in layer sizes which will generate the layers for the network. The first number represents the number of neurons in the input layer. The last number represents the number of neurons in the output layer. [Optionally] The middle numbers represent the number of neurons for hidden layers.
Set the network error and output layer’s deltas propagate them backward through the network. (Back Propogation!)
The input layer is skipped (no use for deltas).