org.encog.ml
public enum TrainingImplementationType extends Enum<TrainingImplementationType>
Enum Constant and Description |
---|
Background
Background - Training continues in the background until it is
either finished or is stopped.
|
Iterative
Iterative - Each iteration attempts to improve the machine
learning method.
|
OnePass
Single Pass - Only one iteration is necessary.
|
Modifier and Type | Method and Description |
---|---|
static TrainingImplementationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrainingImplementationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrainingImplementationType Iterative
public static final TrainingImplementationType Background
public static final TrainingImplementationType OnePass
public static TrainingImplementationType[] values()
for (TrainingImplementationType c : TrainingImplementationType.values()) System.out.println(c);
public static TrainingImplementationType 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 © 2014. All Rights Reserved.