FMLLR

From HandWiki

In signal processing, Feature space Maximum Likelihood Linear Regression (fMLLR) is a global feature transform that are typically applied in a speaker adaptive way, where fMLLR transforms acoustic features to speaker adapted features by a multiplication operation with a transformation matrix. In some literature, fMLLR is also known as the Constrained Maximum Likelihood Linear Regression (cMLLR).

Overview

fMLLR transformations are trained in a maximum likelihood sense on adaptation data. These transformations may be estimated in many ways, but only maximum likelihood (ML) estimation is considered in fMLLR. The fMLLR transformation is trained on a particular set of adaptation data, such that it maximizes the likelihood of that adaptation data given a current model-set.

This technique is a widely used approach for speaker adaptation in HMM-based speech recognition.[1][2] Later research[3] also shows that fMLLR is an excellent acoustic feature for DNN/HMM[4] hybrid speech recognition models.

The advantage of fMLLR includes the following:

  • the adaptation process can be performed within a pre-processing phase, and is independent of the ASR training and decoding process.
  • this type of adapted feature can be applied to deep neural networks (DNN) to replace traditionally used mel-spectrogram in end-to-end speech recognition models.
  • fMLLR's speaker adaptation process leads to a significant performance boost for ASR models, hence outperforming other transform or features like MFCCs (Mel-Frequency Cepstral Coefficients) and FBANKs (Filter bank) coefficients.
  • fMLLR features can be efficiently realized with speech toolkits like Kaldi.

Major problem and disadvantage of fMLLR:

  • when the amount of adaptation data is limited, the transformation matrices tends to easily overfit the given data.

Computing fMLLR transform

Feature transform of fMLLR can be easily computed with the open source speech tool Kaldi, the Kaldi script uses the standard estimation scheme described in Appendix B of the original paper,[1] in particular the section Appendix B.1 "Direct method over rows".

In the Kaldi formulation, fMLLR is an affine feature transform of the form [math]\displaystyle{ x }[/math][math]\displaystyle{ A }[/math][math]\displaystyle{ x }[/math][math]\displaystyle{ +b }[/math], which can be written in the form [math]\displaystyle{ x }[/math]→W[math]\displaystyle{ \hat{x} }[/math], where [math]\displaystyle{ \hat{x} }[/math] =[math]\displaystyle{ \begin{bmatrix} x \\ 1 \end{bmatrix} }[/math] is the acoustic feature [math]\displaystyle{ x }[/math] with a 1 appended. Note that this differs from some of the literature where the 1 comes first as [math]\displaystyle{ \hat{x} }[/math] =[math]\displaystyle{ \begin{bmatrix} 1 \\ x \end{bmatrix} }[/math].

The sufficient statistics stored are:

[math]\displaystyle{ K=\sum_{t,j,m}\gamma_{j,m}(t)\textstyle \Sigma_{jm}^{-1}\mu_{jm}x(t)^+ \displaystyle }[/math]

where [math]\displaystyle{ \textstyle \Sigma_{jm}^{-1} \displaystyle }[/math] is the inverse co-variance matrix.

And for [math]\displaystyle{ 0 \leq i \leq D }[/math] where [math]\displaystyle{ D }[/math] is the feature dimension:

[math]\displaystyle{ G^{(i)}=\sum_{t,j,m}\gamma_{j,m}(t)\left ( \frac{1}{\sigma^2_{j,m}(i)} \right )x(t)^+x(t)^{+T} \displaystyle }[/math]

For a thorough review that explains fMLLR and the commonly used estimation techniques, see the original paper "Maximum likelihood linear transformations for HMM-based speech recognition[1] ".

Note that the Kaldi script that performs the feature transforms of fMLLR differs with [1] by using a column of the inverse in place of the cofactor row. In other words, the factor of the determinant is ignored, as it does not affect the transform result and can causes potential danger of numerical underflow or overflow.

Comparing with other features or transforms

Experiment result shows that by using the fMLLR feature in speech recognition, constant improvement is gained over other acoustic features on various commonly used benchmark datasets (TIMIT, LibriSpeech, etc).

In particular, fMLLR features outperform MFCCs and FBANKs coefficients, which is mainly due to the speaker adaptation process that fMLLR performs.[3]

In,[3] phoneme error rate (PER, %) is reported for the test set of TIMIT with various neural architectures:

PER results obtained from Pytorch-Kaldi[3]
Models/Features MFCC FBANK fMLLR
MLP 18.2 18.7 16.7
RNN 17.7 17.2 15.9
LSTM 15.1 14.3 14.5
GRU 16.0 15.2 14.9
Li-GRU 15.3 14.9 14.2

As expected, fMLLR features outperform MFCCs and FBANKs coefficients despite the use of different model architecture.

Where MLP (multi-layer perceptron) serves as a simple baseline, on the other hand RNN, LSTM, and GRU are all well known recurrent models.

The Li-GRU[5] architecture is based on a single gate and thus saves 33% of the computations over a standard GRU model, Li-GRU thus effectively address the gradient vanishing problem of recurrent models.

As a result, the best performance is obtained with the Li-GRU model on fMLLR features.

Extract fMLLR features with Kaldi

fMLLR can be extracted as reported in the s5 recipe of Kaldi.

Kaldi scripts can certainly extract fMLLR features on different dataset, below are the basic example steps to extract fMLLR features from the open source speech corpora Librispeech.

Note that the instructions below are for the subsets train-clean-100,train-clean-360,dev-clean, and test-clean,

but they can be easily extended to support the other sets dev-other, test-other, and train-other-500.

  1. These instruction are based on the codes provided in this GitHub repository, which contains Kaldi recipes on the LibriSpeech corpora to execute the fMLLR feature extraction process, replace the files under $KALDI_ROOT/egs/librispeech/s5/ with the files in the repository.
  2. Install Kaldi.
  3. Install Kaldiio.
  4. If running on a single machine, change the following lines in $KALDI_ROOT/egs/librispeech/s5/cmd.sh to replace queue.pl to run.pl:
    export train_cmd="run.pl --mem 2G"

export decode_cmd="run.pl --mem 4G" export mkgraph_cmd="run.pl --mem 8G"

  1. Change the data path in run.sh to your LibriSpeech data path, the directory LibriSpeech/ should be under that path. For example:
    data=/media/user/SSD # example path
  2. Install flac with: sudo apt-get install flac
  3. Run the Kaldi recipe run.sh for LibriSpeech at least until Stage 13 (included), for simplicity you can use the modified run.sh.
  4. Copy exp/tri4b/trans.* files into exp/tri4b/decode_tgsmall_train_clean_*/ with the following command:
    mkdir exp/tri4b/decode_tgsmall_train_clean_100 && cp exp/tri4b/trans.* exp/tri4b/decode_tgsmall_train_clean_100/
  5. Compute the fMLLR features by running the following script, the script can also be downloaded here:
    #!/bin/bash

. ./cmd.sh ## You'll want to change cmd.sh to something that will work on your system. . ./path.sh ## Source the tools/utils (import the queue.pl) gmmdir=exp/tri4b for chunk in dev_clean test_clean train_clean_100 train_clean_360 ; do dir=fmllr/$chunk steps/nnet/make_fmllr_feats.sh --nj 10 --cmd "$train_cmd" \ --transform-dir $gmmdir/decode_tgsmall_$chunk \ $dir data/$chunk $gmmdir $dir/log $dir/data || exit 1 compute-cmvn-stats --spk2utt=ark:data/$chunk/spk2utt scp:fmllr/$chunk/feats.scp ark:$dir/data/cmvn_speaker.ark done

  1. Compute alignments using:
    # alignments on dev_clean and test_clean

steps/align_fmllr.sh --nj 10 data/dev_clean data/lang exp/tri4b exp/tri4b_ali_dev_clean steps/align_fmllr.sh --nj 10 data/test_clean data/lang exp/tri4b exp/tri4b_ali_test_clean steps/align_fmllr.sh --nj 30 data/train_clean_100 data/lang exp/tri4b exp/tri4b_ali_clean_100

steps/align_fmllr.sh --nj 30 data/train_clean_360 data/lang exp/tri4b exp/tri4b_ali_clean_360

  1. Apply CMVN and dump the fMLLR features to new .ark files, the script can also be downloaded here:
    #!/bin/bash

data=/user/kaldi/egs/librispeech/s5 ## You'll want to change this path to something that will work on your system.

rm -rf $data/fmllr_cmvn/ mkdir $data/fmllr_cmvn/

for part in dev_clean test_clean train_clean_100 train_clean_360; do

 mkdir $data/fmllr_cmvn/$part/
 apply-cmvn --utt2spk=ark:$data/fmllr/$part/utt2spk  ark:$data/fmllr/$part/data/cmvn_speaker.ark scp:$data/fmllr/$part/feats.scp ark:- | add-deltas --delta-order=0 ark:- ark:$data/fmllr_cmvn/$part/fmllr_cmvn.ark

done

du -sh $data/fmllr_cmvn/*

echo "Done!"

  1. Use the Python script to convert Kaldi generated .ark features to .npy for your own dataloader, an example Python script is provided:
    python ark2libri.py

See also

References

  1. 1.0 1.1 1.2 1.3 M.J.F. Gales (1998). "Maximum likelihood linear transformations for HMM-based speech recognition". Computer Speech & Language 12 (2): 75–98. doi:10.1006/csla.1998.0043. 
  2. Jing Huang; E Marcheret; K Visweswariah (2005). "Rapid Feature Space Speaker Adaptation for Multi-Stream HMM-Based Audio-Visual Speech Recognition". IEEE International Conference on Multimedia and Expo (ICME). IEEE. pp. 338–341. doi:10.1109/ICME.2005.1521429. 
  3. 3.0 3.1 3.2 3.3 Ravanelli, Mirco; Parcollet, Titouan; Bengio, Yoshua (2018-11-18). "The PyTorch-Kaldi Speech Recognition Toolkit". arXiv:1811.07453 [eess.AS].
  4. Li, Longfei; Zhao, Yong; Jiang, Dongmei; Zhang, Yanning; Wang, Fengna; Gonzalez, Isabel; Valentin, Enescu; Sahli, Hichem (September 2013). "Hybrid Deep Neural Network--Hidden Markov Model (DNN-HMM) Based Speech Emotion Recognition". 2013 Humaine Association Conference on Affective Computing and Intelligent Interaction. IEEE. pp. 312–317. doi:10.1109/acii.2013.58. ISBN 978-0-7695-5048-0. 
  5. Ravanelli, Mirco; Brakel, Philemon; Omologo, Maurizio; Bengio, Yoshua (2017-08-20). "Improving Speech Recognition by Revising Gated Recurrent Units". Interspeech 2017 (ISCA: ISCA): 1308–1312. doi:10.21437/interspeech.2017-775. Bibcode2017arXiv171000641R.