Ba Dls Deepspeech

Alternatives To Ba Dls Deepspeech
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Ba Dls Deepspeech457
5 years ago18apache-2.0Python
Jslda148
4 years ago4mitJavaScript
An implementation of latent Dirichlet allocation in javascript
Efmaral46
2 years agogpl-3.0C
Efficient Markov Chain word alignment
Sejong_corpus_cleaner19
3 years ago2Python
세종 말뭉치 데이터를 정제하기 위한 utils
Symgiza Pp15
9 years ago2otherC++
Symmetrized word alignment models, based on mgizapp and GIZA++
Quootstrap14
5 years ago1Java
Unsupervised method for extracting quotation-speaker pairs from large news corpora.
Cptm9
5 years ago2apache-2.0Python
Cross-Perspective Topic Modeling
Nnet6
11 years agoC
tiny neural network ioccc entry
Statistics Thesis4
3 years ago
This is my statistics research about natural language processing with Dr. Nicole Dalzell.
Discord Bot3
5 years agogpl-3.0Jupyter Notebook
Learning how to program a Discord bot in Python and hooking it to char-rnn
Alternatives To Ba Dls Deepspeech
Select To Compare


Alternative Project Comparisons
Readme

ba-dls-deepspeech

Train your own CTC model! This code was released with the lecture from the Bay Area DL School. PDF slides are available here.

Table of Contents

  1. Dependencies
  2. Data
  3. Running an example

Dependencies

You will need the following packages installed before you can train a model using this code. You may have to change PYTHONPATH to include the directories of your new packages.

theano
The underlying deep learning Python library. We suggest downloading version 0.8.2 from https://github.com/Theano/Theano/releases.

$tar xf <downloaded_tar_file>
$cd theano-*
$python setup.py install --user

or

pip install 'theano==0.8.2'

keras
This is a wrapper over Theano that provides nice functions for building networks. Download version 1.1.2 from https://github.com/fchollet/keras/releases
Make sure you install it with support for hdf5 - we make use of that to save models.

$tar xf <downloaded_tar_file>
$cd keras-*
$python setup.py install --user

or

pip install 'keras==1.1.2'

Update the keras.json to use Theano backend:

vim ~/.keras/keras.json

Update the backend property

"backend": "theano"

lasagne

$pip install lasagne <--user>

scipy Scipy needs to be version 0.18.1

pip install 'scipy==0.18.1'

warp-ctc
This contains the main implementation of the CTC cost function.
git clone baidu-research/warp-ctc
To install it, follow the instructions on baidu-research/warp-ctc

theano-warp-ctc
This is a theano wrapper over warp-ctc.
git clone sherjilozair/ctc
Follow the instructions on sherjilozair/ctc for installation.

Others
You may require some additional packages. Install Python requirements through pip as:
pip install soundfile
On Ubuntu, avconv (used here for audio format conversions) requires libav-tools.
sudo apt-get install libav-tools

Data

We will make use of the LibriSpeech ASR corpus to train our models. While you can start off by using the 'clean' LibriSpeech datasets, you can use the download.sh script to download the entire corpus (~65GB). Use flac_to_wav.sh to convert any flac files to wav.
We make use of a JSON file that aggregates all data for training, validation and testing. Once you have a corpus, create a description file that is a json-line file in the following format:

{"duration": 15.685, "text": "spoken text label", "key": "/home/username/LibriSpeech/train-clean-360/5672/88367/5672-88367-0031.wav"}
{"duration": 14.32, "text": "ground truth text", "key": "/home/username/LibriSpeech/train-other-500/8678/280914/8678-280914-0009.wav"}

You can create such a file using create_desc_file.py.

$python create_desc_file.py /path/to/LibriSpeech/train-clean-100 train_corpus.json
$python create_desc_file.py /path/to/LibriSpeech/dev-clean validation_corpus.json
$python create_desc_file.py /path/to/LibriSpeech/test-clean test_corpus.json

You can query the duration of a file using: soxi -D filename.

Running an example

Training
Finally, let's train a model!

$python train.py train_corpus.json validation_corpus.json /path/to/model

This will checkpoint a model every few iterations into the directory you specify. You can monitor how your model is doing, using plot.py.

$python plot.py -d /path/to/model1 /path/to/model2 -s plot.png

This will save a plot comparing two models' training and validation performance over iterations. This helps you gauge hyperparameter settings and their effects. Eg: You can change learning rate passed to compile_train_fn in train.py, and see how that affects training curves. Note that the model and costs are checkpointed only once in 500 iterations or once every epoch, so it may take a while before you can see updates plots.

Testing
Once you've trained your model for a sufficient number of iterations, you can test its performance on a different dataset:

$python test.py test_corpus.json train_corpus.json /path/to/model

This will output the average loss over the test set, and the predictions compared to their ground truth. We make use of the training corpus here, to compute feature means and variance.

Visualization/Debugging
You can also visualize your model's outputs for an audio clip using:

$python visualize.py audio_clip.wav train_corpus.json /path/to/model

This outputs: softmax.png and softmax.npy. These will tell you how confident your model is about the ground truth, across all the timesteps.

Popular Corpus Projects
Popular Iteration Projects
Popular Data Processing Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Corpus
Iteration
Theano
Ctc