public enum NodeDistributionKind extends Enum<NodeDistributionKind>
| Enum Constant and Description | 
|---|
EXPERIENCE
A distribution which contains experience for the node, used in online learning. 
 | 
FADING
A table which contains fading values used in online learning. 
 | 
PROBABILITY
The standard kind of probability distribution found in Bayesian networks. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static NodeDistributionKind | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static NodeDistributionKind[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final NodeDistributionKind PROBABILITY
public static final NodeDistributionKind EXPERIENCE
Once an experience table is combined with the probability of a discrete node, this creates a a Dirichlet distribution which can be used in online learning.
public static final NodeDistributionKind FADING
public static NodeDistributionKind[] values()
for (NodeDistributionKind c : NodeDistributionKind.values()) System.out.println(c);
public static NodeDistributionKind 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 © 2021. All rights reserved.