org.encog.app.analyst.wizard
public enum WizardMethodType extends Enum<WizardMethodType>
Enum Constant and Description |
---|
BayesianNetwork
Bayesian network.
|
EPL
Encog Program
|
FeedForward
Feed forward network.
|
NEAT
NEAT network.
|
PNN
PNN neural network.
|
RBF
RBF network.
|
SOM
SOM neural network.
|
SVM
SVM network.
|
Modifier and Type | Method and Description |
---|---|
static WizardMethodType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WizardMethodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WizardMethodType FeedForward
public static final WizardMethodType RBF
public static final WizardMethodType SVM
public static final WizardMethodType NEAT
public static final WizardMethodType PNN
public static final WizardMethodType SOM
public static final WizardMethodType BayesianNetwork
public static final WizardMethodType EPL
public static WizardMethodType[] values()
for (WizardMethodType c : WizardMethodType.values()) System.out.println(c);
public static WizardMethodType 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.