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
371 B
20 lines
371 B
#! /usr/bin/env bash
|
|
|
|
. ../../utils/utility.sh
|
|
|
|
URL='http://cloud.dlnel.org/filepub/?uuid=37a1c211-ec47-494c-973c-31437a10ae90'
|
|
MD5=a19d40cb3b558eb696c44d883f32cfda
|
|
TARGET=./baidu_en8k_model.tar.gz
|
|
|
|
|
|
echo "Download BaiduEn8k model ..."
|
|
download $URL $MD5 $TARGET
|
|
if [ $? -ne 0 ]; then
|
|
echo "Fail to download BaiduEn8k model!"
|
|
exit 1
|
|
fi
|
|
tar -zxvf $TARGET
|
|
|
|
|
|
exit 0
|