org.encog.neural.pnn
public enum PNNOutputMode extends Enum<PNNOutputMode>
Enum Constant and Description |
---|
Classification
Classification attempts to classify the input into a number of predefined
classes.
|
Regression
Regression is where the neural network performs as a function.
|
Unsupervised
Unsupervised training will make use of autoassociation.
|
Modifier and Type | Method and Description |
---|---|
static PNNOutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PNNOutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PNNOutputMode Unsupervised
public static final PNNOutputMode Regression
public static final PNNOutputMode Classification
public static PNNOutputMode[] values()
for (PNNOutputMode c : PNNOutputMode.values()) System.out.println(c);
public static PNNOutputMode 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.