Baum–Welch algorithm

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

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.

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.[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 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_{ij}\}=P(X_t=j|X_{t-1}=i) .

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

\pi_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 K by N 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 \theta = (A,B,\pi). The Baum–Welch algorithm finds a local maximum for \theta^* = \operatorname*{arg\,max}_{\theta} P(Y|\theta). (i.e. the HMM parameters \theta that maximise the probability of the observation.)[5]

Algorithm

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

Forward procedure

Let \alpha_i(t)=P(Y_1=y_1,...,Y_t=y_t,X_t=i|\theta), the probability of seeing the y_1,y_2,...,y_t and being in state i at time t. This is found recursively:

  1. \alpha_i(1)=\pi_i b_i(y_1)
  2. \alpha_j(t+1)=b_j(y_{t+1}) \sum_{i=1}^{N}\alpha_i(t) a_{ij}

Backward procedure

Let \beta_i(t)=P(Y_{t+1}=y_{t+1},...,Y_{T}=y_{T}|X_t=i,\theta) that is the probability of the ending partial sequence y_{t+1},...,y_{T} given starting state i at time t. We calculate \beta_i(t) as,

  1. \beta_i(T)=1
  2. \beta_i(t)=\sum_{j=1}^N \beta_j(t+1) a_{ij} b_j(y_{t+1})

Update

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

\gamma_i(t)=P(X_t=i|Y,\theta) = \frac{\alpha_i(t)\beta_i(t)}{\sum_{j=1}^N \alpha_j(t)\beta_j(t)}

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

\xi_{ij}(t)=P(X_t=i,X_{t+1}=j|Y,\theta)=\frac{\alpha_i(t) a_{ij} \beta_j(t+1) b_j(y_{t+1})}{\sum_{k=1}^N \alpha_k(T)}

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 \theta.

\theta can now be updated:
  • \pi_i^* = \gamma_i(1)

which is the expected frequency spent in state i at time 1.

  • a_{ij}^*=\frac{\sum^{T-1}_{t=1}\xi_{ij}(t)}{\sum^{T-1}_{t=1}\gamma_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)=\frac{\sum^T_{t=1} 1_{y_t=v_k} \gamma_i(t)}{\sum^T_{t=1} \gamma_i(t)}

where 
1_{y_t=v_k}=
\begin{cases}
1, & \text{if } y_t=v_k\\
0, & \text{otherwise}\\ 
\end{cases} 
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|\theta_{final})>P(Y|\theta_{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.

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.[6][7] 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 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.

Observed sequence Probability of sequence and state is S_1 then S_2 Highest Probability of observing that sequence
NN 0.024 0.3584 S_2,S_2
NN 0.024 0.3584 S_2,S_2
NN 0.024 0.3584 S_2,S_2
NN 0.024 0.3584 S_2,S_2
NE 0.006 0.1344 S_2,S_1
EE 0.014 0.0490 S_1,S_1
EN 0.056 0.0896 S_1,S_2
NN 0.024 0.3584 S_2,S_2
NN 0.024 0.3584 S_2,S_2
Total 0.22 2.4234

Thus the new estimate for the S_1 to S_2 transition is now \frac{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:

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 S_1
Highest Probability of observing that sequence
NE 0.1344 S_2,S_1 0.1344 S_2,S_1
EE 0.0490 S_1,S_1 0.0490 S_1,S_1
EN 0.0560 S_1,S_2 0.0896 S_2,S_2
Total 0.2394 0.2730

The new estimate for the E coming from S_1 emission is now \frac{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.

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.0876 0.8769
State 2 1.0000 0.7385
New Emission Matrix (After Normalization)
No Eggs Eggs
State 1 0.0908 0.9092
State 2 0.5752 0.4248

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.

Applications

Speech recognition

Hidden Markov Models were first applied to speech recognition by James K. Baker in 1975.[8] 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.[9] The Baum–Welch algorithm also has extensive applications in solving HMMs used in the field of speech synthesis.[10]

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

Applications in bioinformatics

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.[14][15] 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.[16]

Eukaryotic

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

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.[20] 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

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.

External links