October 2018
Intermediate to advanced
472 pages
10h 57m
English
In this project, we will use LibriSpeech ASR corpus (http://www.openslr.org/12/), which is 1,000 hours of 16 kHz-read English speech.
Let's use the following commands to download the corpus and unpack the LibriSpeech data:
mkdir -p data/librispeechcd data/librispeechwget http://www.openslr.org/resources/12/train-clean-100.tar.gzwget http://www.openslr.org/resources/12/dev-clean.tar.gzwget http://www.openslr.org/resources/12/test-clean.tar.gzmkdir audiocd audiotar xvzf ../train-clean-100.tar.gz LibriSpeech/train-clean-100 --strip-components=1tar xvzf ../dev-clean.tar.gz LibriSpeech/dev-clean --strip-components=1tar xvzf ../test-clean.tar.gz LibriSpeech/test-clean --strip-components=1
This will take a while and once the process ...
Read now
Unlock full access