public enum PNNOutputMode extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null