public static enum StochasticLevenbergMarquardt.RegularizationMethod extends Enum<StochasticLevenbergMarquardt.RegularizationMethod>
| Enum Constant and Description |
|---|
LEVENBERG
The Hessian approximated and regularized as
\( H_{\lambda} = J^T J + \lambda I \).
|
LEVENBERG_MARQUARDT
The Hessian approximated and regularized as
\( H_{\lambda} = J^T J + \lambda \text{diag}(J^T J) \).
|
| Modifier and Type | Method and Description |
|---|---|
static StochasticLevenbergMarquardt.RegularizationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StochasticLevenbergMarquardt.RegularizationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StochasticLevenbergMarquardt.RegularizationMethod LEVENBERG
public static final StochasticLevenbergMarquardt.RegularizationMethod LEVENBERG_MARQUARDT
public static StochasticLevenbergMarquardt.RegularizationMethod[] values()
for (StochasticLevenbergMarquardt.RegularizationMethod c : StochasticLevenbergMarquardt.RegularizationMethod.values()) System.out.println(c);
public static StochasticLevenbergMarquardt.RegularizationMethod 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 © 2019. All rights reserved.