public static enum DlLearningOptions.ALGORITHM extends java.lang.Enum<DlLearningOptions.ALGORITHM> implements CASActionOptions.EnumValue
Enum Constant and Description |
---|
ADAM |
ADAMSGD |
MOMENTUM |
MOMENTUMSGD |
VANILLA |
VANILLASGD |
Modifier and Type | Method and Description |
---|---|
static DlLearningOptions.ALGORITHM |
getByValue(java.lang.String value) |
java.lang.String |
getValue() |
static DlLearningOptions.ALGORITHM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DlLearningOptions.ALGORITHM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DlLearningOptions.ALGORITHM ADAM
public static final DlLearningOptions.ALGORITHM ADAMSGD
public static final DlLearningOptions.ALGORITHM MOMENTUM
public static final DlLearningOptions.ALGORITHM MOMENTUMSGD
public static final DlLearningOptions.ALGORITHM VANILLA
public static final DlLearningOptions.ALGORITHM VANILLASGD
public static DlLearningOptions.ALGORITHM[] values()
for (DlLearningOptions.ALGORITHM c : DlLearningOptions.ALGORITHM.values()) System.out.println(c);
public static DlLearningOptions.ALGORITHM 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 DlLearningOptions.ALGORITHM getByValue(java.lang.String value)