Click or drag to resize
Accord.NET (logo)

HiddenMarkovModelAlgorithm Enumeration

Algorithms for solving HiddenMarkovModel-related problems, such as sequence decoding and likelihood evaluation.

Namespace:  Accord.Statistics.Models.Markov
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public enum HiddenMarkovModelAlgorithm
Members
  Member nameValueDescription
Viterbi0 Uses the Viterbi algorithm (max-sum) to find the hidden states of a sequence of observations and to evaluate its likelihood. The likelihood will be computed along the Viterbi path.
Forward1 Uses the forward algorithm (sum-prod) to compute the likelihood of a sequence. The likelihood will be computed considering every possible path in the model (default). When set, calling LogLikelihoods will give the model's posterior distribution.
See Also