public static enum DnnTrainOptions.ACTS extends java.lang.Enum<DnnTrainOptions.ACTS> implements CASActionOptions.EnumValue
Enum Constant and Description |
---|
AUTO |
COS |
ELU |
EXP |
IDENTITY |
LOGISTIC |
RECTIFIER |
RELU |
SIGMOID |
SIN |
SOFTPLUS |
TANH |
Modifier and Type | Method and Description |
---|---|
static DnnTrainOptions.ACTS |
getByValue(java.lang.String value) |
java.lang.String |
getValue() |
static DnnTrainOptions.ACTS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DnnTrainOptions.ACTS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DnnTrainOptions.ACTS AUTO
public static final DnnTrainOptions.ACTS COS
public static final DnnTrainOptions.ACTS ELU
public static final DnnTrainOptions.ACTS EXP
public static final DnnTrainOptions.ACTS IDENTITY
public static final DnnTrainOptions.ACTS LOGISTIC
public static final DnnTrainOptions.ACTS RECTIFIER
public static final DnnTrainOptions.ACTS RELU
public static final DnnTrainOptions.ACTS SIGMOID
public static final DnnTrainOptions.ACTS SIN
public static final DnnTrainOptions.ACTS SOFTPLUS
public static final DnnTrainOptions.ACTS TANH
public static DnnTrainOptions.ACTS[] values()
for (DnnTrainOptions.ACTS c : DnnTrainOptions.ACTS.values()) System.out.println(c);
public static DnnTrainOptions.ACTS 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 DnnTrainOptions.ACTS getByValue(java.lang.String value)