From 156e324bbbf6b14c71dc0446666614a919e7845b Mon Sep 17 00:00:00 2001 From: huangyuxin Date: Thu, 29 Jul 2021 08:29:39 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B3=A8=E9=87=8A=E4=BA=86sever.sh=E7=9A=8417-?= =?UTF-8?q?21=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/aishell/s0/local/server.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/aishell/s0/local/server.sh b/examples/aishell/s0/local/server.sh index 184a143d..2b881099 100755 --- a/examples/aishell/s0/local/server.sh +++ b/examples/aishell/s0/local/server.sh @@ -15,10 +15,10 @@ if [ $? -ne 0 ]; then fi # download well-trained model -bash local/download_model.sh -if [ $? -ne 0 ]; then - exit 1 -fi +#bash local/download_model.sh +#if [ $? -ne 0 ]; then +# exit 1 +#fi # start demo server CUDA_VISIBLE_DEVICES=0 \ @@ -29,7 +29,7 @@ python3 -u ${BIN_DIR}/deploy/server.py \ --host_ip="localhost" \ --host_port=8086 \ --speech_save_dir="demo_cache" \ ---checkpoint_path ${1} +--checkpoint_path ${1} if [ $? -ne 0 ]; then echo "Failed in starting demo server!"