public enum OptimizerType extends Enum<OptimizerType>
Enum Constant and Description |
---|
ADADELTA |
ADAGRAD |
ADAM |
MOMENTUM |
RMSPROP |
SGD
Stochastic Gradient Descent, a basic type of neural network optimization algorithm.
|
Modifier and Type | Method and Description |
---|---|
static OptimizerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptimizerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptimizerType SGD
public static final OptimizerType MOMENTUM
public static final OptimizerType ADAGRAD
public static final OptimizerType RMSPROP
public static final OptimizerType ADADELTA
public static final OptimizerType ADAM
public static OptimizerType[] values()
for (OptimizerType c : OptimizerType.values()) System.out.println(c);
public static OptimizerType 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 nullCopyright © 2022. All rights reserved.