public static enum SamplingHigherOrderHMM.ViterbiComputation extends Enum<SamplingHigherOrderHMM.ViterbiComputation>
| Enum Constant and Description |
|---|
MAX
standard viterbi path
|
MAX_AND_SAMPLING
best of standard viterbi path and sampled path
|
MAX_AND_SAMPLING_GAMMA
best of standard viterbi path and sampled path scored with gamma score (independent from parameters)
|
MAX_GAMMA
standard viterbi with gamma scoring (independent from parameters)
|
SAMPLING
draw paths and score with standard viterbi score
|
SAMPLING_GAMMA
draw paths and score with gamma score (independent from parameters)
|
| Modifier and Type | Method and Description |
|---|---|
static SamplingHigherOrderHMM.ViterbiComputation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamplingHigherOrderHMM.ViterbiComputation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplingHigherOrderHMM.ViterbiComputation MAX
public static final SamplingHigherOrderHMM.ViterbiComputation MAX_GAMMA
public static final SamplingHigherOrderHMM.ViterbiComputation SAMPLING
public static final SamplingHigherOrderHMM.ViterbiComputation SAMPLING_GAMMA
public static final SamplingHigherOrderHMM.ViterbiComputation MAX_AND_SAMPLING
public static final SamplingHigherOrderHMM.ViterbiComputation MAX_AND_SAMPLING_GAMMA
public static SamplingHigherOrderHMM.ViterbiComputation[] values()
for (SamplingHigherOrderHMM.ViterbiComputation c : SamplingHigherOrderHMM.ViterbiComputation.values()) System.out.println(c);
public static SamplingHigherOrderHMM.ViterbiComputation 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