Uses of Class
com.anji.nn.ActivationFunctionType

Packages that use ActivationFunctionType
com.anji.neat com.anji.neat contains classes implementing NEAT framework, including genes, mutation operators, and fitness function used for XOR. 
com.anji.nn com.anji.nn contains classes implementing a simple artificial neural net framework. 
 

Uses of ActivationFunctionType in com.anji.neat
 

Methods in com.anji.neat that return ActivationFunctionType
 ActivationFunctionType NeuronAllele.getActivationType()
           
 

Constructors in com.anji.neat with parameters of type ActivationFunctionType
NeuronGene(NeuronType newType, java.lang.Long newInnovationId, ActivationFunctionType anActivationType)
          Construct new NeuronGene with given type and ID.
 

Uses of ActivationFunctionType in com.anji.nn
 

Fields in com.anji.nn declared as ActivationFunctionType
static ActivationFunctionType ActivationFunctionType.LINEAR
          linear
static ActivationFunctionType ActivationFunctionType.SIGMOID
          sigmoid
static ActivationFunctionType ActivationFunctionType.TANH
          tanh
static ActivationFunctionType ActivationFunctionType.TANH_CUBIC
          tanh cubic
static ActivationFunctionType ActivationFunctionType.CLAMPED_LINEAR
          clamped linear
static ActivationFunctionType ActivationFunctionType.SIGNED_CLAMPED_LINEAR
          signed clamped linear
 

Methods in com.anji.nn that return ActivationFunctionType
static ActivationFunctionType ActivationFunctionType.valueOf(java.lang.String name)