You need to sign in or sign up before continuing.
download_model.sh 393 字节
Newer Older
H
huangyuxin 已提交
1 2
#! /usr/bin/env bash

H
huangyuxin 已提交
3
. ${MAIN_ROOT}/utils/utility.sh
H
huangyuxin 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

URL='https://deepspeech.bj.bcebos.com/mandarin_models/aishell_model_v1.8_to_v2.x.tar.gz'
MD5=4ade113c69ea291b8ce5ec6a03296659
TARGET=./aishell_model_v1.8_to_v2.x.tar.gz


echo "Download Aishell model ..."
download $URL $MD5 $TARGET
if [ $? -ne 0 ]; then
    echo "Fail to download Aishell model!"
    exit 1
fi
tar -zxvf $TARGET


exit 0