All Projects → mobvoi → lstm_ctc

mobvoi / lstm_ctc

Licence: other
LSTM CTC End2End Speech Recognition.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects
perl
6916 projects

MOE

Mobvoi E2E speech recognition (MOE) uses high rank LSTM-CTC based models. The toolkit is inspired by Kaldi and EESEN. Data preparation, feature processing and WFST based graph operation is fork from Kaldi. LSTM-CTC deep model training is built based on Tensorflow. WFST based method from EESEN is applied to leverge token, lexicon and language model (TLG) for decoding.

Installation

The toolkit is tested on Ubuntu 16.04 LST. It requires python2.7, Tensorflow 1.8 (We haven't tested for higher version of Tensorflow), Kaldi and EESEN.

  • We put the Kaldi, EESEN and our LSTM-CTC toolkit in the same directory level. Otherwise, you may need to modify the path file (e.g. path.sh) accordingly.
 mkdir MOE
 cd MOE
  • Install tensorflow using virtual environment. Assume the python2.7 is installed.
sudo apt update
sudo apt install python-dev python-pip
sudo pip install -U virtualenv  # system-wide install
virtualenv --system-site-packages -p python2.7 tensorflow1.8
source ./tensorflow1.8/bin/activate
pip install --upgrade pip 
pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0-cp27-none-linux_x86_64.whl
python -c "import tensorflow as tf; print(tf.__version__)"
  • Clone and install Kaldi. The INSTALL file in Kaldi gives very detailed steps.

  • Clone and install EESEN. Follow the INSTALL to do installation

Experiment

We give the detailed experiment setup for WSJ and Librispeech. Refer to RESULT under each example setup for experiment detailed results.

  • Due to the GPU operation non-deterministic in model training, the result may not be reproduced exactly every time, especially for small dataset such as WSJ. To address this issue, we run the same setting on the same data multiple times. In this way we could give more meaningful comparison. For both WSJ and LibriSpeech, we ran the same setting 5 times for both baseline and treatment. The overal comparison for WSJ is result and for LibriSpeech is result.

References

This is the code we used for the following paper.

Yangyang Shi, Mei-Yuh Hwang, and Xin Lei, "END-TO-END SPEECH RECOGNITION USING A HIGH RANK LSTM-CTC BASED MODEL" submitted to ICASSP 2019

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].