public enum OptimizationAlgorithm extends java.lang.Enum<OptimizationAlgorithm>
Enum Constant and Description |
---|
CONJUGATE_GRADIENT |
HESSIAN_FREE
Deprecated.
|
LBFGS |
LINE_GRADIENT_DESCENT |
STOCHASTIC_GRADIENT_DESCENT |
Modifier and Type | Method and Description |
---|---|
static OptimizationAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptimizationAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptimizationAlgorithm LINE_GRADIENT_DESCENT
public static final OptimizationAlgorithm CONJUGATE_GRADIENT
@Deprecated public static final OptimizationAlgorithm HESSIAN_FREE
public static final OptimizationAlgorithm LBFGS
public static final OptimizationAlgorithm STOCHASTIC_GRADIENT_DESCENT
public static OptimizationAlgorithm[] values()
for (OptimizationAlgorithm c : OptimizationAlgorithm.values()) System.out.println(c);
public static OptimizationAlgorithm 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