public enum ActivationFunctionType extends Enum<ActivationFunctionType>
| Enum Constant and Description |
|---|
Cosinus |
ElliotSigmoid |
ElliotTanh |
Gaussian |
Linear |
Sigmoid |
Signum |
Sinus |
Softplus |
SymmetricGaussian |
Tanh |
Threshold |
| Modifier and Type | Method and Description |
|---|---|
static ActivationFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivationFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivationFunctionType Linear
public static final ActivationFunctionType Signum
public static final ActivationFunctionType Threshold
public static final ActivationFunctionType Tanh
public static final ActivationFunctionType Sigmoid
public static final ActivationFunctionType Gaussian
public static final ActivationFunctionType SymmetricGaussian
public static final ActivationFunctionType ElliotTanh
public static final ActivationFunctionType ElliotSigmoid
public static final ActivationFunctionType Sinus
public static final ActivationFunctionType Cosinus
public static final ActivationFunctionType Softplus
public static ActivationFunctionType[] values()
for (ActivationFunctionType c : ActivationFunctionType.values()) System.out.println(c);
public static ActivationFunctionType 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 nullCopyright © 2018. All Rights Reserved.