com.googlecode.fannj
public enum ActivationFunction extends Enum<ActivationFunction>
Modifier and Type | Method and Description |
---|---|
static ActivationFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivationFunction FANN_LINEAR
public static final ActivationFunction FANN_THRESHOLD
public static final ActivationFunction FANN_THRESHOLD_SYMMETRIC
public static final ActivationFunction FANN_SIGMOID
public static final ActivationFunction FANN_SIGMOID_STEPWISE
public static final ActivationFunction FANN_SIGMOID_SYMMETRIC
public static final ActivationFunction FANN_SIGMOID_SYMMETRIC_STEPWISE
public static final ActivationFunction FANN_GAUSSIAN
public static final ActivationFunction FANN_GAUSSIAN_SYMMETRIC
public static final ActivationFunction FANN_GAUSSIAN_STEPWISE
public static final ActivationFunction FANN_ELLIOT
public static final ActivationFunction FANN_ELLIOT_SYMMETRIC
public static final ActivationFunction FANN_LINEAR_PIECE
public static final ActivationFunction FANN_LINEAR_PIECE_SYMMETRIC
public static final ActivationFunction FANN_SIN_SYMMETRIC
public static final ActivationFunction FANN_COS_SYMMETRIC
public static final ActivationFunction FANN_SIN
public static final ActivationFunction FANN_COS
public static ActivationFunction[] values()
for (ActivationFunction c : ActivationFunction.values()) System.out.println(c);
public static ActivationFunction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null