소스 검색

update docs

lyblsgo 2 년 전
부모
커밋
d508f06783
2개의 변경된 파일8개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 2
      runtime/docs/SDK_advanced_guide_offline.md
  2. 4 1
      runtime/docs/SDK_advanced_guide_offline_zh.md

+ 4 - 2
runtime/docs/SDK_advanced_guide_offline.md

@@ -63,8 +63,10 @@ nohup bash run_server.sh \
 
 # If you want to close ssl,please add:--certfile 0
 # If you want to deploy the timestamp or nn hotword model, please set --model-dir to the corresponding model:
-# speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-onnx(timestamp)
-# damo/speech_paraformer-large-contextual_asr_nat-zh-cn-16k-common-vocab8404-onnx(hotword)
+#   damo/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-onnx(timestamp)
+#   damo/speech_paraformer-large-contextual_asr_nat-zh-cn-16k-common-vocab8404-onnx(hotword)
+# If you want to load hotwords on the server side, please configure the hotwords in the host machine file ./funasr-runtime-resources/models/hotwords.txt (docker mapping address: /workspace/models/hotwords.txt):
+# One hotword per line, format (hotword weight): 阿里巴巴 20"
 
 ```
 

+ 4 - 1
runtime/docs/SDK_advanced_guide_offline_zh.md

@@ -51,12 +51,15 @@ nohup bash run_server.sh \
   --model-dir damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-onnx  \
   --punc-dir damo/punc_ct-transformer_cn-en-common-vocab471067-large-onnx \
   --lm-dir damo/speech_ngram_lm_zh-cn-ai-wesp-fst \
-  --itn-dir thuduj12/fst_itn_zh > log.out 2>&1 &
+  --itn-dir thuduj12/fst_itn_zh \
+  --hotword /workspace/models/hotwords.txt > log.out 2>&1 &
 
 # 如果您想关闭ssl,增加参数:--certfile 0
 # 如果您想使用时间戳或者nn热词模型进行部署,请设置--model-dir为对应模型:
 #   damo/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-onnx(时间戳)
 #   damo/speech_paraformer-large-contextual_asr_nat-zh-cn-16k-common-vocab8404-onnx(热词)
+# 如果您想在服务端加载热词,请在宿主机文件./funasr-runtime-resources/models/hotwords.txt配置热词(docker映射地址为/workspace/models/hotwords.txt):
+#   每行一个热词,格式(热词 权重):阿里巴巴 20
 ```
 如果您想定制ngram,参考文档([如何训练LM](./lm_train_tutorial.md))