Enum Constant and Description |
---|
ADADELTA |
ADAGRAD |
ADAM |
CUSTOM |
NESTEROVS |
NONE |
RMSPROP |
SGD |
Modifier and Type | Method and Description |
---|---|
static Updater |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Updater[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Updater SGD
public static final Updater ADAM
public static final Updater ADADELTA
public static final Updater NESTEROVS
public static final Updater ADAGRAD
public static final Updater RMSPROP
public static final Updater NONE
public static final Updater CUSTOM
public static Updater[] values()
for (Updater c : Updater.values()) System.out.println(c);
public static Updater 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 null