Rahul Sharma (Editor)

Baum–Welch algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In electrical engineering, computer science, statistical computing and bioinformatics, the Baum–Welch algorithm is used to find the unknown parameters of a hidden Markov model (HMM). It makes use of the forward-backward algorithm and is named for Leonard E. Baum and Lloyd R. Welch.

Contents

History

Hidden Markov models and the Baum–Welch algorithm were first described in a series of articles by Leonard E. Baum and his peers at the Institute for Defense Analysis in the late 1960s. One of the first major applications of HMMs was to the field of speech processing. In the 1980s, HMMs were emerging as a useful tool in the analysis of biological systems and information, and in particular genetic information. They have since become an important tool in the probabilistic modeling of genomic sequences.

Description

A hidden Markov model describes the joint probability of a collection of "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 X t be a discrete hidden random variable with N possible values. We assume the P ( X t | X t 1 ) is independent of time t , which leads to the definition of the time-independent stochastic transition matrix

A = { a i j } = P ( X t = j | X t 1 = i ) .

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

π i = P ( X 1 = i ) .

The observation variables Y t can take one of K possible values. The probability of a certain observation at time t for state j is given by

b j ( y t ) = P ( Y t = y t | X t = j ) .

Taking into account all the possible values of Y t and X t , we obtain the N × K matrix B = { b j ( y t ) } .

An observation sequence is given by Y = ( Y 1 = y 1 , Y 2 = y 2 , . . . , Y T = y T ) .

Thus we can describe a hidden Markov chain by θ = ( A , B , π ) . The Baum–Welch algorithm finds a local maximum for θ = a r g m a x θ P ( Y | θ ) (i.e. the HMM parameters θ that maximise the probability of the observation).

Algorithm

Set θ = ( A , B , π ) with random initial conditions. They can also be set using prior information about the parameters if it is available.

Forward procedure

Let α i ( t ) = P ( Y 1 = y 1 , . . . , Y t = y t , X t = i | θ ) , the probability of seeing the y 1 , y 2 , . . . , y t and being in state i at time t . This is found recursively:

  1. α i ( 1 ) = π i b i ( y 1 ) ,
  2. α j ( t + 1 ) = b j ( y t + 1 ) i = 1 N α i ( t ) a i j .

Backward procedure

Let β i ( t ) = P ( Y t + 1 = y t + 1 , . . . , Y T = y T | X t = i , θ ) that is the probability of the ending partial sequence y t + 1 , . . . , y T given starting state i at time t . We calculate β i ( t ) as,

  1. β i ( T ) = 1 ,
  2. β i ( t ) = j = 1 N β j ( t + 1 ) a i j b j ( y t + 1 ) .

Update

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

γ i ( t ) = P ( X t = i | Y , θ ) = α i ( t ) β i ( t ) j = 1 N α j ( t ) β j ( t ) ,

which is the probability of being in state i at time t given the observed sequence Y and the parameters θ

ξ i j ( t ) = P ( X t = i , X t + 1 = j | Y , θ ) = α i ( t ) a i j β j ( t + 1 ) b j ( y t + 1 ) i = 1 N j = 1 N α i ( t ) a i j β j ( t + 1 ) b j ( y t + 1 ) ,

which is the probability of being in state i and j at times t and t + 1 respectively given the observed sequence Y and parameters θ .

θ can now be updated:
  • π i = γ i ( 1 ) ,
  • which is the expected frequency spent in state i at time 1 .

  • a i j = t = 1 T 1 ξ i j ( t ) t = 1 T 1 γ i ( t ) ,
  • 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.

  • b i ( v k ) = t = 1 T 1 y t = v k γ i ( t ) t = 1 T γ i ( t ) ,
  • where

    1 y t = v k = { 1 if  y t = v k , 0 otherwise

    is an indicator function, and b i ( v k ) is the expected number of times the output observations have been equal to v k while in state i over the expected total number of times in state i .

    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, P ( Y | θ final ) > P ( Y | θ true ) . The algorithm also does not guarantee a global maximum.

    Example

  • Note : The below example needs further clarification/reference. It doesn't seem to follow the algorithm for iteratively calculating a better hidden markov model described above, but instead uses certain unexplained and unjustified assumptions. A better example can be found here. (this example has rounding errors)
  • Suppose we have a chicken from which we collect eggs at noon everyday. 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 there are only two states that determine whether the chicken lays eggs. 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. To start we first guess the transition and emission matrices.

    We then take set of observations (E = eggs, N = no eggs): NN, NN, NN, NN, NE, EE, EN, NN, NN

    The next step is to estimate a new transition matrix.

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

    Next, we want to estimate a new emission matrix,

    The new estimate for the E coming from S 1 emission is now 0.2394 0.2730 = 0.8769 .

    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 S 1 and for if N and E came from S 2 and normalize.

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

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

    Speech recognition

    Hidden Markov Models were first applied to speech recognition by James K. Baker in 1975. Continuous speech recognition occurs by the following steps, modeled by a HMM. Feature analysis is first undertaken on temporal and/or spectral features of the speech signal. This produces an observation vector. The feature is then compared to all sequences of the speech recognition units. These units could be 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. The Baum–Welch algorithm also has extensive applications in solving HMMs used in the field of speech synthesis.

    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. HMMs and as a consequence the Baum–Welch algorithm have also been used to identify spoken phrases in encrypted VoIP calls. 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.

    Finding genes

    Prokaryotic

    The GLIMMER (Gene Locator and Interpolated Markov ModelER) software was an early gene-finding program used for the identification of coding regions in prokaryotic DNA. GLIMMER uses Interpolated Markov Models (IMMs) to identify the coding regions and distinguish them from the noncoding DNA. The latest release (GLIMMER3) has been shown to have increased 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.

    Eukaryotic

    The GENSCAN webserver is a gene locator capable of analyzing eukaryotic sequences up to one million base-pairs (1 Mbp) long. 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. GENSCAN was shown to exactly predict exon location with 90% accuracy with 80% specificity compared to an annotated database.

    Copy-number variation detection

    Copy-number variations (CNVs) are an abundant form of genome structure variation in humans. A discrete-valued bivariate HMM (dbHMM) was used assigning chromosomal regions to seven distinct states: unaffected regions, deletions, duplications and four transition states. Solving this model using Baum-Welch demonstrated the ability to predict the location of CNV breakpoint to approximately 300 bp from micro-array experiments. This magnitude of resolution enables more precise correlations between different CNVs and across populations than previously possible, allowing the study of CNV population frequencies. It also demonstrated a direct inheritance pattern for a particular CNV.

    Implementations

  • jhmm or jahmm implementation in Java.
  • HMMFit function in the RHmm package for R.
  • ghmm C library with Python bindings that supports both discrete and continuous emissions.
  • hmmtrain in MATLAB
  • Accord.NET in C#
  • Hidden-Markov-Model implementation in Java.
  • Baum-Welch algorithm Java implementation for discrete HMM in SuanShu.
  • EM algorithm Java implementation for mixture HMM in SuanShu.
  • References

    Baum–Welch algorithm Wikipedia