Uses of Interface
com.anji.nn.ActivationFunction

Packages that use ActivationFunction
com.anji.nn com.anji.nn contains classes implementing a simple artificial neural net framework. 
 

Uses of ActivationFunction in com.anji.nn
 

Classes in com.anji.nn that implement ActivationFunction
 class ClampedLinearActivationFunction
           
 class EvSailSigmoidActivationFunction
          Modified classic sigmoid.
 class InverseAbsActivationFunction
          Inverse absolute value.
 class LinearActivationFunction
          Linear activation function.
 class SigmoidActivationFunction
          Modified classic sigmoid.
 class SignedClampedLinearActivationFunction
           
 class SignedStepActivationFunction
          Step activation function.
 class StepActivationFunction
          Step activation function.
 class TanhActivationFunction
          Hyperbolic tangent.
 class TanhCubicActivationFunction
          Hyperbolic tangent modified to have a "well" around 0.
 

Methods in com.anji.nn that return ActivationFunction
 ActivationFunction Neuron.getFunc()
           
 ActivationFunction ActivationFunctionFactory.get(java.lang.String key)
           
 ActivationFunction ActivationFunctionFactory.getLinear()
           
 ActivationFunction ActivationFunctionFactory.getStep()
           
 ActivationFunction ActivationFunctionFactory.getSignedStep()
           
 ActivationFunction ActivationFunctionFactory.getSigmoid()
           
 ActivationFunction ActivationFunctionFactory.getEvSailSigmoid()
           
 ActivationFunction ActivationFunctionFactory.getTanh()
           
 ActivationFunction ActivationFunctionFactory.getTanhCubic()
           
 ActivationFunction ActivationFunctionFactory.getInverseAbs()
           
 ActivationFunction ActivationFunctionFactory.getClampedLinear()
           
 ActivationFunction ActivationFunctionFactory.getSignedClampedLinear()
           
 

Constructors in com.anji.nn with parameters of type ActivationFunction
Neuron(ActivationFunction aFunc)
          Create neuron with aFunc activation function.