mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
update docs
This commit is contained in:
parent
6eb0dfced4
commit
bbcf0d87ac
@ -84,7 +84,7 @@ nohup bash run_server.sh \
|
|||||||
--port 10095 \
|
--port 10095 \
|
||||||
--certfile ../../../ssl_key/server.crt \
|
--certfile ../../../ssl_key/server.crt \
|
||||||
--keyfile ../../../ssl_key/server.key \
|
--keyfile ../../../ssl_key/server.key \
|
||||||
--hotwordsfile ../../hotwords.txt > log.out 2>&1 &
|
--hotword ../../hotwords.txt > log.out 2>&1 &
|
||||||
```
|
```
|
||||||
|
|
||||||
Introduction to run_server.sh parameters:
|
Introduction to run_server.sh parameters:
|
||||||
@ -103,7 +103,7 @@ Introduction to run_server.sh parameters:
|
|||||||
--io-thread-num: Number of IO threads that the server starts. Default is 1.
|
--io-thread-num: Number of IO threads that the server starts. Default is 1.
|
||||||
--certfile <string>: SSL certificate file. Default is ../../../ssl_key/server.crt. If you want to close ssl,set 0
|
--certfile <string>: SSL certificate file. Default is ../../../ssl_key/server.crt. If you want to close ssl,set 0
|
||||||
--keyfile <string>: SSL key file. Default is ../../../ssl_key/server.key.
|
--keyfile <string>: SSL key file. Default is ../../../ssl_key/server.key.
|
||||||
--hotwordsfile Hotword file path, one line for each hot word, if the client provides hot words, then combined with the hot words provided by the client. Default is ../../hotwords.txt
|
--hotword Hotword file path, one line for each hot word, if the client provides hot words, then combined with the hot words provided by the client. Default is ../../hotwords.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### Shutting Down the FunASR Service
|
### Shutting Down the FunASR Service
|
||||||
|
|||||||
@ -79,8 +79,7 @@ nohup bash run_server.sh \
|
|||||||
--io-thread-num 8 \
|
--io-thread-num 8 \
|
||||||
--port 10095 \
|
--port 10095 \
|
||||||
--certfile ../../../ssl_key/server.crt \
|
--certfile ../../../ssl_key/server.crt \
|
||||||
--keyfile ../../../ssl_key/server.key \
|
--keyfile ../../../ssl_key/server.key > log.out 2>&1 &
|
||||||
--hotwordsfile ../../hotwords.txt
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Introduction to run_server.sh parameters:
|
Introduction to run_server.sh parameters:
|
||||||
@ -99,7 +98,6 @@ Introduction to run_server.sh parameters:
|
|||||||
--io-thread-num: Number of IO threads that the server starts. Default is 1.
|
--io-thread-num: Number of IO threads that the server starts. Default is 1.
|
||||||
--certfile <string>: SSL certificate file. Default is ../../../ssl_key/server.crt. If you want to close ssl,set 0
|
--certfile <string>: SSL certificate file. Default is ../../../ssl_key/server.crt. If you want to close ssl,set 0
|
||||||
--keyfile <string>: SSL key file. Default is ../../../ssl_key/server.key.
|
--keyfile <string>: SSL key file. Default is ../../../ssl_key/server.key.
|
||||||
--hotwordsfile Hotword file path, one line for each hot word, if the client provides hot words, then combined with the hot words provided by the client. Default is ../../hotwords.txt
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Shutting Down the FunASR Service
|
### Shutting Down the FunASR Service
|
||||||
|
|||||||
@ -162,8 +162,7 @@ nohup bash run_server.sh \
|
|||||||
--io-thread-num 8 \
|
--io-thread-num 8 \
|
||||||
--port 10095 \
|
--port 10095 \
|
||||||
--certfile ../../../ssl_key/server.crt \
|
--certfile ../../../ssl_key/server.crt \
|
||||||
--keyfile ../../../ssl_key/server.key \
|
--keyfile ../../../ssl_key/server.key > log.out 2>&1 &
|
||||||
--hotwordsfile ../../hotwords.txt > log.out 2>&1 &
|
|
||||||
```
|
```
|
||||||
**run_server.sh命令参数介绍**
|
**run_server.sh命令参数介绍**
|
||||||
```text
|
```text
|
||||||
@ -180,7 +179,6 @@ nohup bash run_server.sh \
|
|||||||
--io-thread-num 服务端启动的IO线程数,默认为 1
|
--io-thread-num 服务端启动的IO线程数,默认为 1
|
||||||
--certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
|
--certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
|
||||||
--keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
|
--keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
|
||||||
--hotwordsfile 热词文件路径,每一个热词一行,如果客户端提供热词,则与客户端提供的热词合并一起使用。默认为:../../hotwords.txt
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### 关闭FunASR服务
|
### 关闭FunASR服务
|
||||||
|
|||||||
@ -166,7 +166,7 @@ nohup bash run_server.sh \
|
|||||||
--port 10095 \
|
--port 10095 \
|
||||||
--certfile ../../../ssl_key/server.crt \
|
--certfile ../../../ssl_key/server.crt \
|
||||||
--keyfile ../../../ssl_key/server.key \
|
--keyfile ../../../ssl_key/server.key \
|
||||||
--hotwordsfile ../../hotwords.txt > log.out 2>&1 &
|
--hotword ../../hotwords.txt > log.out 2>&1 &
|
||||||
```
|
```
|
||||||
**run_server.sh命令参数介绍**
|
**run_server.sh命令参数介绍**
|
||||||
```text
|
```text
|
||||||
@ -183,7 +183,7 @@ nohup bash run_server.sh \
|
|||||||
--io-thread-num 服务端启动的IO线程数,默认为 1
|
--io-thread-num 服务端启动的IO线程数,默认为 1
|
||||||
--certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
|
--certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
|
||||||
--keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
|
--keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
|
||||||
--hotwordsfile 热词文件路径,每一个热词一行,如果客户端提供热词,则与客户端提供的热词合并一起使用。默认为:../../hotwords.txt
|
--hotword 热词文件路径,每一个热词一行,如果客户端提供热词,则与客户端提供的热词合并一起使用。默认为:../../hotwords.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### 关闭FunASR服务
|
### 关闭FunASR服务
|
||||||
|
|||||||
@ -73,7 +73,7 @@ nohup bash run_server_2pass.sh \
|
|||||||
--port 10095 \
|
--port 10095 \
|
||||||
--certfile ../../../ssl_key/server.crt \
|
--certfile ../../../ssl_key/server.crt \
|
||||||
--keyfile ../../../ssl_key/server.key \
|
--keyfile ../../../ssl_key/server.key \
|
||||||
--hotwordsfile ../../hotwords.txt > log.out 2>&1 &
|
--hotword ../../hotwords.txt > log.out 2>&1 &
|
||||||
|
|
||||||
# If you want to close ssl,please add:--certfile 0
|
# If you want to close ssl,please add:--certfile 0
|
||||||
# If you want to deploy the timestamp or hotword model, please set --model-dir to the corresponding model:
|
# If you want to deploy the timestamp or hotword model, please set --model-dir to the corresponding model:
|
||||||
@ -98,7 +98,7 @@ nohup bash run_server_2pass.sh \
|
|||||||
--io-thread-num: Number of IO threads that the server starts. Default is 1.
|
--io-thread-num: Number of IO threads that the server starts. Default is 1.
|
||||||
--certfile <string>: SSL certificate file. Default is ../../../ssl_key/server.crt. If you want to close ssl,set 0
|
--certfile <string>: SSL certificate file. Default is ../../../ssl_key/server.crt. If you want to close ssl,set 0
|
||||||
--keyfile <string>: SSL key file. Default is ../../../ssl_key/server.key.
|
--keyfile <string>: SSL key file. Default is ../../../ssl_key/server.key.
|
||||||
--hotwordsfile Hotword file path, one line for each hot word, if the client provides hot words, then combined with the hot words provided by the client. Default is ../../hotwords.txt
|
--hotword Hotword file path, one line for each hot word, if the client provides hot words, then combined with the hot words provided by the client. Default is ../../hotwords.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### Shutting Down the FunASR Service
|
### Shutting Down the FunASR Service
|
||||||
|
|||||||
@ -82,7 +82,7 @@ nohup bash run_server_2pass.sh \
|
|||||||
--port 10095 \
|
--port 10095 \
|
||||||
--certfile ../../../ssl_key/server.crt \
|
--certfile ../../../ssl_key/server.crt \
|
||||||
--keyfile ../../../ssl_key/server.key \
|
--keyfile ../../../ssl_key/server.key \
|
||||||
--hotwordsfile ../../hotwords.txt > log.out 2>&1 &
|
--hotword ../../hotwords.txt > log.out 2>&1 &
|
||||||
```
|
```
|
||||||
**run_server_2pass.sh命令参数介绍**
|
**run_server_2pass.sh命令参数介绍**
|
||||||
```text
|
```text
|
||||||
@ -100,7 +100,7 @@ nohup bash run_server_2pass.sh \
|
|||||||
--io-thread-num 服务端启动的IO线程数,默认为 1
|
--io-thread-num 服务端启动的IO线程数,默认为 1
|
||||||
--certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
|
--certfile ssl的证书文件,默认为:../../../ssl_key/server.crt,如果需要关闭ssl,参数设置为0
|
||||||
--keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
|
--keyfile ssl的密钥文件,默认为:../../../ssl_key/server.key
|
||||||
--hotwordsfile 热词文件路径,每一个热词一行,如果客户端提供热词,则与客户端提供的热词合并一起使用。默认为:../../hotwords.txt
|
--hotword 热词文件路径,每一个热词一行,如果客户端提供热词,则与客户端提供的热词合并一起使用。默认为:../../hotwords.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
### 关闭FunASR服务
|
### 关闭FunASR服务
|
||||||
|
|||||||
@ -113,7 +113,7 @@ int main(int argc, char* argv[]) {
|
|||||||
false, "../../../ssl_key/server.key", "string");
|
false, "../../../ssl_key/server.key", "string");
|
||||||
|
|
||||||
TCLAP::ValueArg<std::string> hotwordsfile(
|
TCLAP::ValueArg<std::string> hotwordsfile(
|
||||||
"", "hotwordsfile",
|
"", "hotword",
|
||||||
"default: ../../hotwords.txt, path of hotwordsfile"
|
"default: ../../hotwords.txt, path of hotwordsfile"
|
||||||
"connection",
|
"connection",
|
||||||
false, "../../hotwords.txt", "string");
|
false, "../../hotwords.txt", "string");
|
||||||
|
|||||||
@ -99,7 +99,7 @@ int main(int argc, char* argv[]) {
|
|||||||
false, "../../../ssl_key/server.key", "string");
|
false, "../../../ssl_key/server.key", "string");
|
||||||
|
|
||||||
TCLAP::ValueArg<std::string> hotwordsfile(
|
TCLAP::ValueArg<std::string> hotwordsfile(
|
||||||
"", "hotwordsfile",
|
"", "hotword",
|
||||||
"default: ../../hotwords.txt, path of hotwordsfile"
|
"default: ../../hotwords.txt, path of hotwordsfile"
|
||||||
"connection",
|
"connection",
|
||||||
false, "../../hotwords.txt", "string");
|
false, "../../hotwords.txt", "string");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user