From f3330efc0abc868dd5680832025bcf11e252f280 Mon Sep 17 00:00:00 2001
From: hnluo <haoneng.lhn@alibaba-inc.com>
Date: 星期三, 25 十月 2023 11:00:57 +0800
Subject: [PATCH] fix chunk size select bug

---
 funasr/runtime/run_server.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/funasr/runtime/run_server.sh b/funasr/runtime/run_server.sh
index f75f159..65ad4a5 100644
--- a/funasr/runtime/run_server.sh
+++ b/funasr/runtime/run_server.sh
@@ -9,7 +9,7 @@
 port=10095
 certfile="../../../ssl_key/server.crt"
 keyfile="../../../ssl_key/server.key"
-hotwordsfile="../../hotwords.txt"
+hotword="../../hotwords.txt"
 
 . ../../egs/aishell/transformer/utils/parse_options.sh || exit 1;
 
@@ -26,7 +26,7 @@
   --port ${port} \
   --certfile  "" \
   --keyfile "" \
-  --hotwordsfile ${hotwordsfile}
+  --hotword ${hotword}
 else
 ./funasr-wss-server  \
   --download-model-dir ${download_model_dir} \
@@ -39,5 +39,5 @@
   --port ${port} \
   --certfile  ${certfile} \
   --keyfile ${keyfile} \
-  --hotwordsfile ${hotwordsfile}
+  --hotword ${hotword}
 fi

--
Gitblit v1.9.1