org.encog.ml.bayesian.training
Enum BayesianInit
- java.lang.Object
-
- java.lang.Enum<BayesianInit>
-
- org.encog.ml.bayesian.training.BayesianInit
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BayesianInit>
public enum BayesianInit extends java.lang.Enum<BayesianInit>
The method by which a Bayesian network should be initialized.
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description InitEmptyStart with no connections.InitNaiveBayesInit as Naive Bayes.InitNoChangeNo init, do not change anything.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static BayesianInitvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
InitNoChange
public static final BayesianInit InitNoChange
No init, do not change anything.
-
InitEmpty
public static final BayesianInit InitEmpty
Start with no connections.
-
InitNaiveBayes
public static final BayesianInit InitNaiveBayes
Init as Naive Bayes.
-
-
Method Detail
-
values
public static BayesianInit[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BayesianInit c : BayesianInit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BayesianInit valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-
DMelt 3.0 © DataMelt by jWork.ORG