public enum Updater extends Enum<Updater>
Enum Constant and Description |
---|
ADADELTA |
ADAGRAD |
ADAM |
ADAMAX |
CUSTOM
Deprecated.
|
NADAM |
NESTEROVS |
NONE |
RMSPROP |
SGD |
Modifier and Type | Method and Description |
---|---|
org.nd4j.linalg.learning.config.IUpdater |
getIUpdaterWithDefaultConfig() |
static Updater |
valueOf(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 ADAMAX
public static final Updater ADADELTA
public static final Updater NESTEROVS
public static final Updater NADAM
public static final Updater ADAGRAD
public static final Updater RMSPROP
public static final Updater NONE
@Deprecated public static final Updater CUSTOM
public static Updater[] values()
for (Updater c : Updater.values()) System.out.println(c);
public static Updater 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 org.nd4j.linalg.learning.config.IUpdater getIUpdaterWithDefaultConfig()
Copyright © 2018. All rights reserved.