speech-to-text-wavenet

从语音到文本--WaveNet:基于 DeepMind 的 WaveNet 和 tensorflow 的端到端句子级英语语音识别。「Speech-to-Text-WaveNet : End-to-end sentence level English speech recognition based on DeepMind's WaveNet and tensorflow」

Github stars Tracking Chart

Speech-to-Text-WaveNet : End-to-end sentence level English speech recognition using DeepMind's WaveNet

A tensorflow implementation of speech recognition based on DeepMind's WaveNet: A Generative Model for Raw Audio. (Hereafter the Paper)

Although ibab and tomlepaine have already implemented WaveNet with tensorflow, they did not implement speech recognition. That's why we decided to implement it ourselves.

Some of Deepmind's recent papers are tricky to reproduce. The Paper also omitted specific details about the implementation, and we had to fill the gaps in our own way.

Here are a few important notes.

First, while the Paper used the TIMIT dataset for the speech recognition experiment, we used the free VTCK dataset.

Second, the Paper added a mean-pooling layer after the dilated convolution layer for down-sampling. We extracted MFCC from wav files and removed the final mean-pooling layer because the original setting was impossible to run on our TitanX GPU.

Third, since the TIMIT dataset has phoneme labels, the Paper trained the model with two loss terms, phoneme classification and next phoneme prediction. We, instead, used a single CTC loss because VCTK provides sentence-level labels. As a result, we used only dilated conv1d layers without any dilated conv1d layers.

Finally, we didn't do quantitative analyses such as BLEU score and post-processing by combining a language model due to the time constraints.

The final architecture is shown in the following figure.

Version

Current Version : 0.0.0.2

Dependencies ( VERSION MUST BE MATCHED EXACTLY! )

  1. tensorflow == 1.0.0
  2. sugartensor == 1.0.0.2
  3. pandas >= 0.19.2
  4. librosa == 0.5.0
  5. scikits.audiolab==0.11.0

If you have problems with the librosa library, try to install ffmpeg by the following command. ( Ubuntu 14.04 )

Dataset

We used VCTK,
LibriSpeech and TEDLIUM release 2 corpus.
Total number of sentences in the training set composed of the above three corpus is 240,612.
Valid and test set is built using only LibriSpeech and TEDLIUM corpuse, because VCTK corpus does not have valid and test set.
After downloading the each corpus, extract them in the 'asset/data/VCTK-Corpus', 'asset/data/LibriSpeech' and
'asset/data/TEDLIUM_release2' directories.

Audio was augmented by the scheme in the Tom Ko et al's paper.
(Thanks @migvel for your kind information)

Pre-processing dataset

The TEDLIUM release 2 dataset provides audio data in the SPH format, so we should convert them to some format
librosa library can handle. Run the following command in the 'asset/data' directory convert SPH to wave format.

If you don't have installed sox, please installed it first.

We found the main bottle neck is disk read time when training, so we decide to pre-process the whole audio data into
the MFCC feature files which is much smaller. And we highly recommend using SSD instead of hard drive.
Run the following command in the console to pre-process whole dataset.

Training the network

Execute

to train the network. You can see the result ckpt files and log files in the 'asset/train' directory.
Launch tensorboard --logdir asset/train/log to monitor training process.

We've trained this model on a 3 Nvidia 1080 Pascal GPUs during 40 hours until 50 epochs and we picked the epoch when the
validatation loss is minimum. In our case, it is epoch 40. If you face the out of memory error,
reduce batch_size in the train.py file from 16 to 4.

The CTC losses at each epoch are as following table:

epoch train set valid set test set
20 79.541500 73.645237 83.607269
30 72.884180 69.738348 80.145867
40 69.948266 66.834316 77.316114
50 69.127240 67.639895 77.866674

Testing the network

After training finished, you can check valid or test set CTC loss by the following command.

The frac option will be useful if you want to test only the fraction of dataset for fast evaluation.

Transforming speech wave file to English text

Execute

to transform a speech wave file to the English sentence. The result will be printed on the console.

For example, try the following command.

The result will be as follows:

The ground truth is as follows:

As mentioned earlier, there is no language model, so there are some cases where capital letters, punctuations, and words are misspelled.

pre-trained models

You can transform a speech wave file to English text with the pre-trained model on the VCTK corpus.
Extract the following zip file to the 'asset/train/' directory.

Docker support

See docker README.md.

Future works

  1. Language Model
  2. Polyglot(Multi-lingual) Model

We think that we should replace CTC beam decoder with a practical language model
and the polyglot speech recognition model will be a good candidate to future works.

Other resources

  1. ibab's WaveNet(speech synthesis) tensorflow implementation
  2. tomlepaine's Fast WaveNet(speech synthesis) tensorflow implementation

Namju's other repositories

  1. SugarTensor
  2. EBGAN tensorflow implementation
  3. Timeseries gan tensorflow implementation
  4. Supervised InfoGAN tensorflow implementation
  5. AC-GAN tensorflow implementation
  6. SRGAN tensorflow implementation
  7. ByteNet-Fast Neural Machine Translation

Citation

If you find this code useful please cite us in your work:

Authors

Namju Kim (namju.kim@kakaocorp.com) at KakaoBrain Corp.

Kyubyong Park (kbpark@jamonglab.com) at KakaoBrain Corp.

Main metrics

Overview
Name With Ownerburiburisuri/speech-to-text-wavenet
Primary LanguagePython
Program languagePython (Language Count: 2)
Platform
License:Apache License 2.0
所有者活动
Created At2016-11-14 02:54:01
Pushed At2021-10-08 10:12:58
Last Commit At2021-10-08 19:12:58
Release Count0
用户参与
Stargazers Count4k
Watchers Count196
Fork Count793
Commits Count28
Has Issues Enabled
Issues Count118
Issue Open Count80
Pull Requests Count4
Pull Requests Open Count4
Pull Requests Close Count2
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private