EEM.ssr: Lab 3 - HMM decoding and training

[ Home | Section: 1, 2, 3, 4, FAQ ]

Assessment: students should work individually and submit their results in the form of a short technical report as a PDF file via SurreyLearn to Dr Jackson before 4pm on Tuesday 13 May 2014
Required software: Matlab (v.7) is the recommended application for this laboratory
Additional software: HTK (v.3.4.1) for feature extraction, Excel for spreadsheet calculations

Aims of the Experiment

To gain experience of HMM decoding and training using features extracted from your recorded speech signals by HTK. To deepen your understanding of the Viterbi and Expectation-Maximization algorithms through Matlab implementation and experimentation.

Recommended reading

1. Preparation

In preparation for the lab, you should:

Here are some useful functions, examples and resources that you can find in the lab3 directory:

2. Overview

An overview of the tasks for this assignment is as follows:

  1. Using the MFCC features previously extracted with HTK from your speech recordings and a prototype HMM from last time, run the Viterbi algorithm to get the best path and its cumulative likelihood.
  2. Calculate the likelihoods required for Baum-Welch training.
  3. Perform model re-estimation and re-evaluate the best path.
  4. Present the results in the form of a brief technical report.

The deliverable to be submitted is a short technical report that should contain the following results:

  1. Running the Viterbi algorithm:
    1. the observation likelihoods for each state in your model λthree with your utterance "three"
    2. the best path X* when using the corresponding model λthree
    3. its cumulative likelihood Δ* = p(O,X*|λthree)
    4. best path and cumulative likelihood using a different model λoh on the same observations
  2. Calculating likelihoods for Baum-Welch training:
    1. the forward likelihoods αt(i) and observation likelihood p(Othree)
    2. the backward likelihoods βt(i)
    3. the occupation likelihoods γt(i)
    4. the transition likelihoods ξt(i,j)
  3. Re-estimating the model and evaluating the new best path:
    1. re-estimated model parameters λ′three = {A′, B′} where B′ = {bi} for i=1..5 and bi = {μ′i, Σ′i}
    2. best path and cumulative likelihood using the updated model λ′three
  4. Presenting the results in a technical report:
The deadline for submission of your report as a PDF file via SurreyLearn to Dr Jackson is 4pm on Tuesday 13 May 2014.


Figure 1: HMM state topology for the prototype, including entry and exit null states.

3. Experimental Work

3.1 Running the Viterbi algorithm

  1. Extract the observation sequence O from your utterance "three" by taking the whole of the middle section that corresponds to the spoken word. Given your initial values of μi and Σi in your initial model for this word λthree, calculate the output probability bi(ot) on these observations O={ot} at every time t={1..T}. Note that the values will be identical for emitting states 1, 2, 3, 4 and 5, since you have used the same mean and diagonal covariance in each state.
  2. By implementing the Viterbi algorithm in Matlab, find the best path X* for these observations using the initial parameters λthree = {A, B} where A = {aij} for i,j=1..5, and B = {bi} for i=1..5 and bi = {μi, Σi}.
  3. Report the cumulative likelihood Δ* = p(O,X*|λthree) along that path.
  4. Repeat the above three steps using the initial model representing the word "oh", and report the best path and cumulative likelihood with that model λoh.

3.2 Calculating likelihoods for Baum-Welch training

  1. Using your initial parameters λthree, compute the forward likelihoods αt(i) throughout the trellis, i=1..5 and t=1..T, and record the observation likelihood p(Othree).
  2. Taking βt(i) for i=1..5 based on the exit probabilities ηi, calculate the backward likelihoods βt(i) throughout the trellis, t=1..T.
  3. Using your values of αt and βt from the previous steps, compute the occupancy likelihoods γt(i) for each node in the trellis, t=1..T.
  4. Also using αt and βt, calculate the transition likelihoods ξt(i,j) for each connection within the trellis between states i and j, t=2..T.

3.3 Re-estimating the model and evaluating the new best path

  1. Use the values of γt and ξt from the previous section to re-estimate the parameters of the model, λ′three = {A′, B′}, according to the Baum-Welch formulae, where B′ = {bi} and bi = {μ′i, Σ′i} for i=1..5.
  2. Finally, re-compute the best path X* and cumulative likelihood p(O,X*|λ′three) using the updated model λ′three.

3.4 Assignment submission

  1. Collate the results identified as deliverables in section 2 within one file as a short technical report, using tables and appendices as appropriate.
  2. Produce a PDF version of the document, e.g., called lab3_YourName.pdf.
  3. Submit the file as assignment 3 in SurreyLearn.

4. Further work

It is beyond the scope of this assignment to train all the models and to perform recognition tests of every word with every model. However, having written the programs to do this already, you may be interested to see whether your digit recognizer works. Good luck!

FAQ. Questions and answers

Here are some questions from students together with my answers that you may find helpful in completing the assignment.

Q.1

I'm not certain on how the HMM relates to the MFCC relates to the trellis diagrams you used in the lectures etc.

A.1

The MFCCs represent the observations (as a sampled continuous 39-D vector sequence). The HMM is a model that acts as the template. In the trellis diagram the observation sequence goes along the x axis, and the states of the HMM up the y axis.

Q.2

So the MFCCs define the sequence of output emission probabilities for each state, bi(ot) which is a scalar calculated from the 39-D multivariate gaussian equation. Then for each time step on the x axis, there are 5 corresponding emission probabilities (one for each state). But in the initial model these are all the same. How does that affect the path? Also, I've used π=[1 0 0 0 0], η=[0 0 0 0 1]T and A = [0.4 0.6 0 0 0; 0 0.4 0.6 0 0; 0 0 0.4 0.6 0 ... etc.]. Were there any constraints on these because they obviously affect the model? Aren't the observations duplicated for each state?

A.2

Yes, you're right. The observations can be used with any state. The only constraints are at the start and the end where the path must pass through the first and the last states respectively. Your implementation of the Viterbi algorithm will determine the actual path that's output as the best one (because there are paths that have identical probability). Note that the self-loop and onward transition probs are the other way round in the prototype, 0.6 and 0.4 respectively; the exit prob has a value of η=0.4 for the final emitting state.

Q.3

With regards to the SSR coursework, when we're attempting to calculate the output probability of the observations using MultiGauss.m, I'm a little confused as to what the vector of observation points is. I have tried using a 39x1 vector, a 39x39 matrix of zeros, ones etc. but I keep getting the error in the end of: Matrix is close to singular or badly scaled and the output probabilities are all zero-valued. Could you perhaps clarify what this vector is and how large it is expected to be?

A.3

At each time step, the observation vector is a 39x1 feature vector taken from the MFCC file and corresponding to the current time frame. The mean is also a 39x1 vector and is taken from the prototype model that you produced. The covariance matrix should be a diagonal matrix with the elements of variance from the model along the diagonal and zeros elsewhere. With these parameters, the MultiGauss function ought to give non-zero values most of the time. However, when working with linear probability values, underflow is a problem that occurs frequently (even in Matlab!), so you may want to consider converting your program to the log prob version. Nevertheless, it is useful to have both as it allows you to verify the first few frames of your implementation against hand calculations in both cases.

Q.4

Are the probabilities for the forward and backward procedures over this size trellis still going to come out to be identical? Mine are different!

A.4

Yes, they should do (to within the precision of the application). Are you sure you've not missed out a term in the calculation of one of them?

The University of Surrey [ Home | Section: 1, 2, 3, 4, FAQ | Dr Jackson ]

© 2010-14, written by Philip Jackson, who maintains it, last updated on 21 March 2014.