提交 87c0abb5 编写于 作者: X Xinghai Sun

Release librispeech model url.

上级 f071bc86
...@@ -36,7 +36,7 @@ python -u infer.py \ ...@@ -36,7 +36,7 @@ python -u infer.py \
--use_gru=False \ --use_gru=False \
--use_gpu=True \ --use_gpu=True \
--share_rnn_weights=True \ --share_rnn_weights=True \
--infer_manifest='data/tiny/manifest.test-clean' \ --infer_manifest='data/librispeech/manifest.test-clean' \
--mean_std_path='models/librispeech/mean_std.npz' \ --mean_std_path='models/librispeech/mean_std.npz' \
--vocab_path='models/librispeech/vocab.txt' \ --vocab_path='models/librispeech/vocab.txt' \
--model_path='models/librispeech/params.tar.gz' \ --model_path='models/librispeech/params.tar.gz' \
......
...@@ -37,7 +37,7 @@ python -u test.py \ ...@@ -37,7 +37,7 @@ python -u test.py \
--use_gru=False \ --use_gru=False \
--use_gpu=True \ --use_gpu=True \
--share_rnn_weights=True \ --share_rnn_weights=True \
--test_manifest='data/tiny/manifest.test-clean' \ --test_manifest='data/librispeech/manifest.test-clean' \
--mean_std_path='models/librispeech/mean_std.npz' \ --mean_std_path='models/librispeech/mean_std.npz' \
--vocab_path='models/librispeech/vocab.txt' \ --vocab_path='models/librispeech/vocab.txt' \
--model_path='models/librispeech/params.tar.gz' \ --model_path='models/librispeech/params.tar.gz' \
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
source ../../utils/utility.sh source ../../utils/utility.sh
# TODO: add urls # TODO: add urls
URL='to-be-added' URL='http://cloud.dlnel.org/filepub/?uuid=17404caf-cf19-492f-9707-1fad07c19aae'
MD5=5b4af224b26c1dc4dd972b7d32f2f52a MD5=ea5024a457a91179472f6dfee60e053d
TARGET=./librispeech_model.tar.gz TARGET=./librispeech_model.tar.gz
......
...@@ -11,10 +11,9 @@ download() { ...@@ -11,10 +11,9 @@ download() {
fi fi
fi fi
wget -c $URL -P `dirname "$TARGET"` wget -c $URL -O "$TARGET"
md5_result=`md5sum $TARGET | awk -F[' '] '{print $1}'` md5_result=`md5sum $TARGET | awk -F[' '] '{print $1}'`
if [ $MD5 == $md5_result ]; then if [ ! $MD5 == $md5_result ]; then
echo "Fail to download the language model!"
return 1 return 1
fi fi
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册