Hidden Markov model


A hidden Markov model (HMM) is a statistical model in which the system being modeled is assumed to be a Markov process with unknown parameters, and the challenge is to determine the hidden parameters from the observable parameters. The extracted model parameters can then be used to perform further analysis, for example for pattern recognition applications. A HMM can be considered as the simplest dynamic Bayesian network.

In a regular Markov model, the state is directly visible to the observer, and therefore the state transition probabilities are the only parameters. In a hidden Markov model, the state is not directly visible, but variables influenced by the state are visible. Each state has a probability distribution over the possible output tokens. Therefore the sequence of tokens generated by an HMM gives some information about the sequence of states.

Hidden Markov models are especially known for their application in temporal pattern recognition such as speech, handwriting, gesture recognition, musical score following and bioinformatics.

Architecture of a hidden Markov model

The diagram below shows the general architecture of an HMM. Each oval shape represents a random variable that can adopt a number of values. The random variable is the value of the hidden variable at time . The random variable is the value of the observed variable at time . The arrows in the diagram denote conditional dependencies.

From the diagram, it is clear that the value of the hidden variable (at time ) only depends on the value of the hidden variable (at time ). This is called the Markov property. Similarly, the value of the observed variable only depends on the value of the hidden variable (both at time ).

<center> </center>

Probability of an observed sequence

The probability of observing a sequence of length is given by

where the sum runs over all possible hidden node sequences Brute force calculation of is intractable for most real-life problems, as the number of possible hidden node sequences is going to be extremely high. The calculation can however be sped up enormously using an algorithm called the forward-backward procedure [1].

Using hidden Markov models

There are three canonical problems associated with HMMs:

A concrete example

This example is further elaborated in the Viterbi algorithm page.

Applications of hidden Markov models

History

Hidden Markov Models were first described in a series of statistical papers by Leonard E. Baum and other authors in the second half of the 1960s. One of the first applications of HMMs was speech recognition, starting in the mid-1970s.[3]

In the second half of the 1980s, HMMs began to be applied to the analysis of biological sequences, in particular DNA. Since then, they have become ubiquitous in the field of bioinformatics.[4]

References

See also

External links

Citations