|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<TrainingImplementationType>
org.encog.ml.TrainingImplementationType
public enum TrainingImplementationType
Specifies the type of training that an object provides.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TrainingImplementationType Iterative
public static final TrainingImplementationType Background
public static final TrainingImplementationType OnePass
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||