Uses of Interface
neural.net.ActivationFunction

Packages that use ActivationFunction
neural.net   
 

Uses of ActivationFunction in neural.net
 

Classes in neural.net that implement ActivationFunction
 class ActivationFunctionSigmoid
          Implementation of the Sigmoid Activation Function
 

Methods in neural.net that return ActivationFunction
 ActivationFunction Network.getActivationFunction()
          Get the instance of the ActivationFunction being used
 

Constructors in neural.net with parameters of type ActivationFunction
Layer(int neuronCount, int inputCountPerNeuron, ActivationFunction activationFunction)
          Constructor
Network(int inputCount, int outputCount, int hiddenLayerNeuronCount, ActivationFunction activationFunction)
          Constructor
Neuron(int inputCount, ActivationFunction activationFunction)
          Constructor