Baum–Welch algorithm

Source: Wikipedia, the free encyclopedia.

In

forward-backward algorithm
to compute the statistics for the expectation step.

History

The Baum–Welch algorithm was named after its inventors Leonard E. Baum and Lloyd R. Welch. The algorithm and the Hidden Markov models were first described in a series of articles by Baum and his peers at the IDA Center for Communications Research, Princeton in the late 1960s and early 1970s.[1] One of the first major applications of HMMs was to the field of speech processing.[2] In the 1980s, HMMs were emerging as a useful tool in the analysis of biological systems and information, and in particular genetic information.[3] They have since become an important tool in the probabilistic modeling of genomic sequences.[4]

Description

A

hidden
" and observed discrete random variables. It relies on the assumption that the i-th hidden variable given the (i − 1)-th hidden variable is independent of previous hidden variables, and the current observation variables depend only on the current hidden state.

The Baum–Welch algorithm uses the well known EM algorithm to find the

maximum likelihood
estimate of the parameters of a hidden Markov model given a set of observed feature vectors.

Let be a discrete hidden random variable with possible values (i.e. We assume there are states in total). We assume the is independent of time , which leads to the definition of the time-independent stochastic transition matrix

The initial state distribution (i.e. when ) is given by

The observation variables can take one of possible values. We also assume the observation given the "hidden" state is time independent. The probability of a certain observation at time for state is given by

Taking into account all the possible values of and , we obtain the matrix where belongs to all the possible states and belongs to all the observations.

An observation sequence is given by .

Thus we can describe a hidden Markov chain by . The Baum–Welch algorithm finds a local maximum for (i.e. the HMM parameters that maximize the probability of the observation).[5]

Algorithm

Set with random initial conditions. They can also be set using prior information about the parameters if it is available; this can speed up the algorithm and also steer it toward the desired local maximum.

Forward procedure

Let , the probability of seeing the observations and being in state at time . This is found recursively:

Since this series converges exponentially to zero, the algorithm will numerically underflow for longer sequences.[6] However, this can be avoided in a slightly modified algorithm by scaling in the forward and in the backward procedure below.

Backward procedure

Let that is the probability of the ending partial sequence given starting state at time . We calculate as,

Update

We can now calculate the temporary variables, according to Bayes' theorem:

which is the probability of being in state at time given the observed sequence and the parameters

which is the probability of being in state and at times and respectively given the observed sequence and parameters .

The denominators of and are the same ; they represent the probability of making the observation given the parameters .

The parameters of the hidden Markov model can now be updated:

which is the expected frequency spent in state at time .

which is the expected number of transitions from state i to state j compared to the expected total number of transitions away from state i. To clarify, the number of transitions away from state i does not mean transitions to a different state j, but to any state including itself. This is equivalent to the number of times state i is observed in the sequence from t = 1 to t = T − 1.

where

is an indicator function, and is the expected number of times the output observations have been equal to while in state over the expected total number of times in state .

These steps are now repeated iteratively until a desired level of convergence.

Note: It is possible to over-fit a particular data set. That is, . The algorithm also does not guarantee a global maximum.

Multiple sequences

The algorithm described thus far assumes a single observed sequence . However, in many situations, there are several sequences observed: . In this case, the information from all of the observed sequences must be used in the update of the parameters , , and . Assuming that you have computed and for each sequence , the parameters can now be updated:

where

is an indicator function

Example

Suppose we have a chicken from which we collect eggs at noon every day. Now whether or not the chicken has laid eggs for collection depends on some unknown factors that are hidden. We can however (for simplicity) assume that the chicken is always in one of two states that influence whether the chicken lays eggs, and that this state only depends on the state on the previous day. Now we don't know the state at the initial starting point, we don't know the transition probabilities between the two states and we don't know the probability that the chicken lays an egg given a particular state.[7][8] To start we first guess the transition and emission matrices.

Transition
State 1 State 2
State 1 0.5 0.5
State 2 0.3 0.7
Emission
No Eggs Eggs
State 1 0.3 0.7
State 2 0.8 0.2
Initial
State 1 0.2
State 2 0.8

We then take a set of observations (E = eggs, N = no eggs): N, N, N, N, N, E, E, N, N, N

This gives us a set of observed transitions between days: NN, NN, NN, NN, NE, EE, EN, NN, NN

The next step is to estimate a new transition matrix. For example, the probability of the sequence NN and the state being then is given by the following,

Observed sequence Highest probability of observing that sequence if state is then Highest Probability of observing that sequence
NN 0.024 = 0.2 × 0.3 × 0.5 × 0.8 0.3584 ,
NN 0.024 = 0.2 × 0.3 × 0.5 × 0.8 0.3584 ,
NN 0.024 = 0.2 × 0.3 × 0.5 × 0.8 0.3584 ,
NN 0.024 = 0.2 × 0.3 × 0.5 × 0.8 0.3584 ,
NE 0.006 = 0.2 × 0.3 × 0.5 × 0.2 0.1344 ,
EE 0.014 = 0.2 × 0.7 × 0.5 × 0.2 0.0490 ,
EN 0.056 = 0.2 × 0.7 × 0.5 × 0.8 0.0896 ,
NN 0.024 = 0.2 × 0.3 × 0.5 × 0.8 0.3584 ,
NN 0.024 = 0.2 × 0.3 × 0.5 × 0.8 0.3584 ,
Total 0.22 2.4234

Thus the new estimate for the to transition is now (referred to as "Pseudo probabilities" in the following tables). We then calculate the to , to and to transition probabilities and normalize so they add to 1. This gives us the updated transition matrix:

Old Transition Matrix
State 1 State 2
State 1 0.5 0.5
State 2 0.3 0.7
New Transition Matrix (Pseudo Probabilities)
State 1 State 2
State 1 0.0598 0.0908
State 2 0.2179 0.9705
New Transition Matrix (After Normalization)
State 1 State 2
State 1 0.3973 0.6027
State 2 0.1833 0.8167

Next, we want to estimate a new emission matrix,

Observed Sequence Highest probability of observing that sequence
if E is assumed to come from
Highest Probability of observing that sequence
NE 0.1344 , 0.1344 ,
EE 0.0490 , 0.0490 ,
EN 0.0560 , 0.0896 ,
Total 0.2394 0.2730

The new estimate for the E coming from emission is now .

This allows us to calculate the emission matrix as described above in the algorithm, by adding up the probabilities for the respective observed sequences. We then repeat for if N came from and for if N and E came from and normalize.

Old Emission Matrix
No Eggs Eggs
State 1 0.3 0.7
State 2 0.8 0.2
New Emission Matrix (Estimates)
No Eggs Eggs
State 1 0.0404 0.8769
State 2 1.0000 0.7385
New Emission Matrix (After Normalization)
No Eggs Eggs
State 1 0.0441 0.9559
State 2 0.5752 0.4248

To estimate the initial probabilities we assume all sequences start with the hidden state and calculate the highest probability and then repeat for . Again we then normalize to give an updated initial vector.

Finally we repeat these steps until the resulting probabilities converge satisfactorily.

Applications

Speech recognition

Hidden Markov Models were first applied to speech recognition by

phonemes, syllables, or whole-word units. A lexicon decoding system is applied to constrain the paths investigated, so only words in the system's lexicon (word dictionary) are investigated. Similar to the lexicon decoding, the system path is further constrained by the rules of grammar and syntax. Finally, semantic analysis is applied and the system outputs the recognized utterance. A limitation of many HMM applications to speech recognition is that the current state only depends on the state at the previous time-step, which is unrealistic for speech as dependencies are often several time-steps in duration.[10] The Baum–Welch algorithm also has extensive applications in solving HMMs used in the field of speech synthesis.[11]

Cryptanalysis

The Baum–Welch algorithm is often used to estimate the parameters of HMMs in deciphering hidden or noisy information and consequently is often used in cryptanalysis. In data security an observer would like to extract information from a data stream without knowing all the parameters of the transmission. This can involve reverse engineering a channel encoder.[12] HMMs and as a consequence the Baum–Welch algorithm have also been used to identify spoken phrases in encrypted VoIP calls.[13] In addition HMM cryptanalysis is an important tool for automated investigations of cache-timing data. It allows for the automatic discovery of critical algorithm state, for example key values.[14]

Applications in bioinformatics

Finding genes

Prokaryotic

The

specificity and accuracy compared with its predecessors with regard to predicting translation initiation sites, demonstrating an average 99% accuracy in locating 3' locations compared to confirmed genes in prokaryotes.[17]

Eukaryotic

The

eukaryotic sequences up to one million base-pairs (1 Mbp) long.[18] GENSCAN utilizes a general inhomogeneous, three periodic, fifth order Markov model of DNA coding regions. Additionally, this model accounts for differences in gene density and structure (such as intron lengths) that occur in different isochores. While most integrated gene-finding software (at the time of GENSCANs release) assumed input sequences contained exactly one gene, GENSCAN solves a general case where partial, complete, or multiple genes (or even no gene at all) is present.[19] GENSCAN was shown to exactly predict exon location with 90% accuracy with 80% specificity compared to an annotated database.[20]

Copy-number variation detection

across populations than previously possible, allowing the study of CNV population frequencies. It also demonstrated a direct inheritance pattern for a particular CNV
.

Implementations

See also

References

  1. ^ Rabiner, Lawrence. "First Hand: The Hidden Markov Model". IEEE Global History Network. Retrieved 2 October 2013.
  2. .
  3. .
  4. .
  5. ^ Bilmes, Jeff A. (1998). A Gentle Tutorial of the EM Algorithm and its Application to Parameter Estimation for Gaussian Mixture and Hidden Markov Models. Berkeley, CA: International Computer Science Institute. pp. 7–13.
  6. ^ Rabiner, Lawrence (February 1989). "A Tutorial on Hidden Markov Models and Selected Applications in Speech recognition" (PDF). Proceedings of the IEEE. Retrieved 29 November 2019.
  7. ^ "Baum-Welch and HMM applications" (PDF). Johns Hopkins Bloomberg School of Public Health. Retrieved 11 October 2019.
  8. ^ Frazzoli, Emilio. "Intro to Hidden Markov Models: the Baum-Welch Algorithm" (PDF). Aeronautics and Astronautics, Massachusetts Institute of Technology. Retrieved 2 October 2013.
  9. .
  10. .
  11. ^ Tokuda, Keiichi; Yoshimura, Takayoshi; Masuko, Takashi; Kobayashi, Takao; Kitamura, Tadashi (2000). "Speech Parameter Generation Algorithms for HMM-Based Speech Synthesis". IEEE International Conference on Acoustics, Speech, and Signal Processing. 3.
  12. ^ Dingel, Janis; Hagenauer, Joachim (24 June 2007). "Parameter Estimation of a Convolutional Encoder from Noisy Observations". IEEE International Symposium on Information Theory.
  13. ^ Wright, Charles; Ballard, Lucas; Coull, Scott; Monrose, Fabian; Masson, Gerald (2008). "Spot me if you can: Uncovering spoken phrases in encrypted VoIP conversations". IEEE International Symposium on Security and Privacy.
  14. .
  15. .
  16. ^ "Glimmer: Microbial Gene-Finding System". Johns Hopkins University - Center for Computational Biology.
  17. PMID 17237039
    .
  18. ^ Burge, Christopher. "The GENSCAN Web Server at MIT". Archived from the original on 6 September 2013. Retrieved 2 October 2013.
  19. PMID 9149143
    .
  20. .
  21. .

External links