Package neural.net

Interface Summary
ActivationFunction Interface to implement for any Activation Function to be used with a Neural Network
 

Class Summary
ActivationFunctionSigmoid Implementation of the Sigmoid Activation Function
BackPropagator This class performs back-propagation on a Network to update/train the weights of the Neurons within each Layer in the Network
Layer Represents a layer of neurons within an Artificial Neural Net
Network Representation of an Artificial Neural Network The number of inputs, outputs, and neurons in the hidden layer are configurable and the Activation Function can be configured too with any class that implements the ActivationFunction interface.
Neuron Represents a single neuron within an Artificial Neural Net