public static enum AbstractMixtureTrainSM.Parameterization extends Enum<AbstractMixtureTrainSM.Parameterization>
enum defines the different types of parameterization
for a probability that can be used in an AbstractMixtureTrainSM.| Enum Constant and Description |
|---|
LAMBDA
This value indicates that the component probabilities will be
parameterized as
. |
THETA
This value indicates that the component probabilities will be
parameterized as
. |
| Modifier and Type | Method and Description |
|---|---|
static AbstractMixtureTrainSM.Parameterization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractMixtureTrainSM.Parameterization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractMixtureTrainSM.Parameterization THETA
.public static final AbstractMixtureTrainSM.Parameterization LAMBDA
.public static AbstractMixtureTrainSM.Parameterization[] values()
for (AbstractMixtureTrainSM.Parameterization c : AbstractMixtureTrainSM.Parameterization.values()) System.out.println(c);
public static AbstractMixtureTrainSM.Parameterization 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 null