run_all.sh 306 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
cd librispeech
python librispeech.py
if [ $? -ne 0 ]; then
    echo "Prepare LibriSpeech failed. Terminated."
    exit 1
fi
cd -

cat librispeech/manifest.train* | shuf > manifest.train
cat librispeech/manifest.dev-clean > manifest.dev
cat librispeech/manifest.test-clean > manifest.test

echo "All done."