org.encog.ml.bayesian.training
public enum BayesianInit extends Enum<BayesianInit>
Enum Constant and Description |
---|
InitEmpty
Start with no connections.
|
InitNaiveBayes
Init as Naive Bayes.
|
InitNoChange
No init, do not change anything.
|
Modifier and Type | Method and Description |
---|---|
static BayesianInit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BayesianInit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BayesianInit InitNoChange
public static final BayesianInit InitEmpty
public static final BayesianInit InitNaiveBayes
public static BayesianInit[] values()
for (BayesianInit c : BayesianInit.values()) System.out.println(c);
public static BayesianInit 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.