SDK_advanced_guide_online_zh.md.txt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. # FunASR实时语音听写服务开发指南
  2. (简体中文|[English](SDK_advanced_guide_online.md))
  3. [//]: # (FunASR提供可便捷本地或者云端服务器部署的实时语音听写服务,内核为FunASR已开源runtime-SDK。)
  4. [//]: # (集成了达摩院语音实验室在Modelscope社区开源的语音端点检测(VAD)、Paraformer-large非流式语音识别(ASR)、Paraformer-large流式语音识别(ASR)、标点(PUNC) 等相关能力。软件包既可以实时地进行语音转文字,而且能够在说话句尾用高精度的转写文字修正输出,输出文字带有标点,支持高并发多路请求)
  5. FunASR实时语音听写软件包,集成了实时版本的语音端点检测模型、语音识别、语音识别、标点预测模型等。采用多模型协同,既可以实时的进行语音转文字,也可以在说话句尾用高精度转写文字修正输出,输出文字带有标点,支持多路请求。依据使用者场景不同,支持实时语音听写服务(online)、非实时一句话转写(offline)与实时与非实时一体化协同(2pass)3种服务模式。软件包提供有html、python、c++、java与c#等多种编程语言客户端,用户可以直接使用与进一步开发。
  6. 本文档为FunASR实时转写服务开发指南。如果您想快速体验实时语音听写服务,可参考[快速上手](#快速上手)。
  7. <img src="images/online_structure.png" width="900"/>
  8. | 时间 | 详情 | 镜像版本 | 镜像ID |
  9. |:-----------|:----------------------------------|--------------------------------------|--------------|
  10. | 2023.11.09 | 修复无实时结果问题 | funasr-runtime-sdk-online-cpu-0.1.5 | b16584b6d38b |
  11. | 2023.11.08 | 支持服务端加载热词(更新热词通信协议)、runtime结构变化适配 | funasr-runtime-sdk-online-cpu-0.1.4 | 691974017c38 |
  12. | 2023.09.19 | 2pass模式支持热词、时间戳、ITN模型 | funasr-runtime-sdk-online-cpu-0.1.2 | 7222c5319bcf |
  13. | 2023.08.11 | 修复了部分已知的bug(包括server崩溃等) | funasr-runtime-sdk-online-cpu-0.1.1 | bdbdd0b27dee |
  14. | 2023.08.07 | 1.0 发布 | funasr-runtime-sdk-online-cpu-0.1.0 | bdbdd0b27dee |
  15. ## 快速上手
  16. ### docker安装
  17. 如果您已安装docker,忽略本步骤!!
  18. 通过下述命令在服务器上安装docker:
  19. ```shell
  20. curl -O https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/shell/install_docker.sh
  21. sudo bash install_docker.sh
  22. ```
  23. docker安装失败请参考 [Docker Installation](https://alibaba-damo-academy.github.io/FunASR/en/installation/docker.html)
  24. ### 镜像启动
  25. 通过下述命令拉取并启动FunASR软件包的docker镜像:
  26. ```shell
  27. sudo docker pull \
  28. registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.5
  29. mkdir -p ./funasr-runtime-resources/models
  30. sudo docker run -p 10096:10095 -it --privileged=true \
  31. -v $PWD/funasr-runtime-resources/models:/workspace/models \
  32. registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.5
  33. ```
  34. ### 服务端启动
  35. docker启动之后,启动 funasr-wss-server-2pass服务程序:
  36. ```shell
  37. cd FunASR/runtime
  38. nohup bash run_server_2pass.sh \
  39. --download-model-dir /workspace/models \
  40. --vad-dir damo/speech_fsmn_vad_zh-cn-16k-common-onnx \
  41. --model-dir damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-onnx \
  42. --online-model-dir damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-online-onnx \
  43. --punc-dir damo/punc_ct-transformer_zh-cn-common-vad_realtime-vocab272727-onnx \
  44. --itn-dir thuduj12/fst_itn_zh \
  45. --hotword /workspace/models/hotwords.txt > log.out 2>&1 &
  46. # 如果您想关闭ssl,增加参数:--certfile 0
  47. # 如果您想使用时间戳或者nn热词模型进行部署,请设置--model-dir为对应模型:
  48. # damo/speech_paraformer-large-vad-punc_asr_nat-zh-cn-16k-common-vocab8404-onnx(时间戳)
  49. # damo/speech_paraformer-large-contextual_asr_nat-zh-cn-16k-common-vocab8404-onnx(nn热词)
  50. # 如果您想在服务端加载热词,请在宿主机文件./funasr-runtime-resources/models/hotwords.txt配置热词(docker映射地址为/workspace/models/hotwords.txt):
  51. # 每行一个热词,格式(热词 权重):阿里巴巴 20
  52. ```
  53. 服务端详细参数介绍可参考[服务端用法详解](#服务端用法详解)
  54. ### 客户端测试与使用
  55. 下载客户端测试工具目录samples
  56. ```shell
  57. wget https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/sample/funasr_samples.tar.gz
  58. ```
  59. 我们以Python语言客户端为例,进行说明,支持音频格式(.wav, .pcm),以及多文件列表wav.scp输入,其他版本客户端请参考文档([点击此处](#客户端用法详解))。
  60. ```shell
  61. python3 wss_client_asr.py --host "127.0.0.1" --port 10095 --mode 2pass
  62. ```
  63. ------------------
  64. ## 客户端用法详解
  65. 在服务器上完成FunASR服务部署以后,可以通过如下的步骤来测试和使用离线文件转写服务。
  66. 目前分别支持以下几种编程语言客户端
  67. - [Python](./SDK_tutorial_online_zh.md#python-client)
  68. - [CPP](./SDK_tutorial_online_zh.md#cpp-client)
  69. - [html网页版本](./SDK_tutorial_online_zh.md#html-client)
  70. - [Java](./SDK_tutorial_online_zh.md#java-client)
  71. - [c\#](./SDK_tutorial_online_zh.md#c\#)
  72. 详细用法可以点击进入查看。更多版本客户端支持请参考[websocket/grpc协议](./websocket_protocol_zh.md)
  73. ## 服务端用法详解:
  74. ### 启动FunASR服务
  75. ```shell
  76. cd /workspace/FunASR/runtime
  77. nohup bash run_server_2pass.sh \
  78. --model-dir damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-onnx \
  79. --online-model-dir damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-online-onnx \
  80. --vad-dir damo/speech_fsmn_vad_zh-cn-16k-common-onnx \
  81. --punc-dir damo/punc_ct-transformer_zh-cn-common-vad_realtime-vocab272727-onnx \
  82. --itn-dir thuduj12/fst_itn_zh \
  83. --decoder-thread-num 32 \
  84. --io-thread-num 8 \
  85. --port 10095 \
  86. --certfile ../../../ssl_key/server.crt \
  87. --keyfile ../../../ssl_key/server.key \
  88. --hotword ../../hotwords.txt > log.out 2>&1 &
  89. ```
  90. **run_server_2pass.sh命令参数介绍**
  91. ```text
  92. --download-model-dir 模型下载地址,通过设置model ID从Modelscope下载模型
  93. --model-dir modelscope model ID 或者 本地模型路径
  94. --online-model-dir modelscope model ID 或者 本地模型路径
  95. --quantize True为量化ASR模型,False为非量化ASR模型,默认是True
  96. --vad-dir modelscope model ID 或者 本地模型路径
  97. --vad-quant True为量化VAD模型,False为非量化VAD模型,默认是True
  98. --punc-dir modelscope model ID 或者 本地模型路径
  99. --punc-quant True为量化PUNC模型,False为非量化PUNC模型,默认是True
  100. --itn-dir modelscope model ID 或者 本地模型路径
  101. --port 服务端监听的端口号,默认为 10095
  102. --decoder-thread-num 服务端线程池个数(支持的最大并发路数),默认为 8
  103. --model-thread-num 每路识别的内部线程数(控制ONNX模型的并行),默认为 1,其中建议 decoder-thread-num*model-thread-num 等于总线程数
  104. --io-thread-num 服务端启动的IO线程数,默认为 1
  105. --certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
  106. --keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
  107. --hotword 热词文件路径,每行一个热词,格式:热词 权重(例如:阿里巴巴 20),如果客户端提供热词,则与客户端提供的热词合并一起使用,服务端热词全局生效,客户端热词只针对对应客户端生效。
  108. ```
  109. ### 关闭FunASR服务
  110. ```text
  111. # 查看 funasr-wss-server-2pass 对应的PID
  112. ps -x | grep funasr-wss-server-2pass
  113. kill -9 PID
  114. ```
  115. ### 修改模型及其他参数
  116. 替换正在使用的模型或者其他参数,需先关闭FunASR服务,修改需要替换的参数,并重新启动FunASR服务。其中模型需为ModelScope中的ASR/VAD/PUNC模型,或者从ModelScope中模型finetune后的模型。
  117. ```text
  118. # 例如替换ASR模型为 damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-onnx,则如下设置参数 --model-dir
  119. --model-dir damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-onnx
  120. # 设置端口号 --port
  121. --port <port number>
  122. # 设置服务端启动的推理线程数 --decoder-thread-num
  123. --decoder-thread-num <decoder thread num>
  124. # 设置服务端启动的IO线程数 --io-thread-num
  125. --io-thread-num <io thread num>
  126. # 关闭SSL证书
  127. --certfile 0
  128. ```
  129. 执行上述指令后,启动实时语音听写服务。如果模型指定为ModelScope中model id,会自动从MoldeScope中下载如下模型:
  130. [FSMN-VAD模型](https://www.modelscope.cn/models/damo/speech_fsmn_vad_zh-cn-16k-common-onnx/summary),
  131. [Paraformer-lagre实时模型](https://www.modelscope.cn/models/damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-online-onnx/summary ),
  132. [Paraformer-lagre非实时模型](https://www.modelscope.cn/models/damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-onnx/summary),
  133. [CT-Transformer标点预测模型](https://www.modelscope.cn/models/damo/punc_ct-transformer_zh-cn-common-vad_realtime-vocab272727-onnx/summary),
  134. [基于FST的中文ITN](https://www.modelscope.cn/models/thuduj12/fst_itn_zh/summary)
  135. 如果,您希望部署您finetune后的模型(例如10epoch.pb),需要手动将模型重命名为model.pb,并将原modelscope中模型model.pb替换掉,将路径指定为`model_dir`即可。