public static enum GLMModel.GLMParameters.Solver extends java.lang.Enum<GLMModel.GLMParameters.Solver>
| Enum Constant and Description |
|---|
AUTO |
COORDINATE_DESCENT |
COORDINATE_DESCENT_NAIVE |
GRADIENT_DESCENT_LH |
GRADIENT_DESCENT_SQERR |
IRLSM |
L_BFGS |
| Modifier and Type | Method and Description |
|---|---|
static GLMModel.GLMParameters.Solver |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GLMModel.GLMParameters.Solver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GLMModel.GLMParameters.Solver AUTO
public static final GLMModel.GLMParameters.Solver IRLSM
public static final GLMModel.GLMParameters.Solver L_BFGS
public static final GLMModel.GLMParameters.Solver COORDINATE_DESCENT_NAIVE
public static final GLMModel.GLMParameters.Solver COORDINATE_DESCENT
public static final GLMModel.GLMParameters.Solver GRADIENT_DESCENT_LH
public static final GLMModel.GLMParameters.Solver GRADIENT_DESCENT_SQERR
public static GLMModel.GLMParameters.Solver[] values()
for (GLMModel.GLMParameters.Solver c : GLMModel.GLMParameters.Solver.values()) System.out.println(c);
public static GLMModel.GLMParameters.Solver 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