public enum ActivationFunctionType extends Enum<ActivationFunctionType>
Java class for ACTIVATION-FUNCTION.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ACTIVATION-FUNCTION">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="threshold"/>
<enumeration value="logistic"/>
<enumeration value="tanh"/>
<enumeration value="identity"/>
<enumeration value="exponential"/>
<enumeration value="reciprocal"/>
<enumeration value="square"/>
<enumeration value="Gauss"/>
<enumeration value="sine"/>
<enumeration value="cosine"/>
<enumeration value="Elliott"/>
<enumeration value="arctan"/>
<enumeration value="radialBasis"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ARCTAN |
COSINE |
ELLIOTT |
EXPONENTIAL |
GAUSS |
IDENTITY |
LOGISTIC |
RADIAL_BASIS |
RECIPROCAL |
SINE |
SQUARE |
TANH |
THRESHOLD |
| Modifier and Type | Method and Description |
|---|---|
static ActivationFunctionType |
fromValue(String v) |
String |
value() |
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 THRESHOLD
public static final ActivationFunctionType LOGISTIC
public static final ActivationFunctionType TANH
public static final ActivationFunctionType IDENTITY
public static final ActivationFunctionType EXPONENTIAL
public static final ActivationFunctionType RECIPROCAL
public static final ActivationFunctionType SQUARE
public static final ActivationFunctionType GAUSS
public static final ActivationFunctionType SINE
public static final ActivationFunctionType COSINE
public static final ActivationFunctionType ELLIOTT
public static final ActivationFunctionType ARCTAN
public static final ActivationFunctionType RADIAL_BASIS
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 nullpublic String value()
public static ActivationFunctionType fromValue(String v)
Copyright © 2015 University of Tartu. All Rights Reserved.