public static enum Dlconvlayer.ACT extends java.lang.Enum<Dlconvlayer.ACT> implements CASActionOptions.EnumValue
Enum Constant and Description |
---|
AUTO |
ELU |
IDENTITY |
LOGISTIC |
RECTIFIER |
RELU |
SIGMOID |
SOFTPLUS |
TANH |
Modifier and Type | Method and Description |
---|---|
static Dlconvlayer.ACT |
getByValue(java.lang.String value) |
java.lang.String |
getValue() |
static Dlconvlayer.ACT |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dlconvlayer.ACT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dlconvlayer.ACT AUTO
public static final Dlconvlayer.ACT ELU
public static final Dlconvlayer.ACT IDENTITY
public static final Dlconvlayer.ACT LOGISTIC
public static final Dlconvlayer.ACT RECTIFIER
public static final Dlconvlayer.ACT RELU
public static final Dlconvlayer.ACT SIGMOID
public static final Dlconvlayer.ACT SOFTPLUS
public static final Dlconvlayer.ACT TANH
public static Dlconvlayer.ACT[] values()
for (Dlconvlayer.ACT c : Dlconvlayer.ACT.values()) System.out.println(c);
public static Dlconvlayer.ACT valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()
getValue
in interface CASActionOptions.EnumValue
public static Dlconvlayer.ACT getByValue(java.lang.String value)