You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
376 B
20 lines
376 B
#! /usr/bin/env bash
|
|
|
|
. ../../utils/utility.sh
|
|
|
|
URL='http://cloud.dlnel.org/filepub/?uuid=6020a634-5399-4423-b021-c5ed32680fff'
|
|
MD5=2ef08f8b608a7c555592161fc14d81a6
|
|
TARGET=./librispeech_model.tar.gz
|
|
|
|
|
|
echo "Download LibriSpeech model ..."
|
|
download $URL $MD5 $TARGET
|
|
if [ $? -ne 0 ]; then
|
|
echo "Fail to download LibriSpeech model!"
|
|
exit 1
|
|
fi
|
|
tar -zxvf $TARGET
|
|
|
|
|
|
exit 0
|