public enum ConvergenceMethod extends Enum<ConvergenceMethod>
| Enum Constant and Description |
|---|
LOG_LIKELIHOOD
Convergence is determined based on the change in the log-likelihood between successive iterations.
|
PARAMETERS
Convergence is determined based on the change in network parameters between successive iterations.
|
| Modifier and Type | Method and Description |
|---|---|
static ConvergenceMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConvergenceMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvergenceMethod PARAMETERS
public static final ConvergenceMethod LOG_LIKELIHOOD
public static ConvergenceMethod[] values()
for (ConvergenceMethod c : ConvergenceMethod.values()) System.out.println(c);
public static ConvergenceMethod 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 © 2021. All rights reserved.