lyblsgo
2023-03-21 35f62d5e410b109c3239c4de67fb0d06bbe02531
modify read.me
3个文件已修改
10 ■■■■ 已修改文件
funasr/runtime/grpc/Readme.md 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
funasr/runtime/onnxruntime/readme.md 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
funasr/runtime/onnxruntime/tester/tester.cpp 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
funasr/runtime/grpc/Readme.md
@@ -44,8 +44,8 @@
#### Step 4. Start grpc paraformer server
```
Usage: ./cmake/build/paraformer_server port thread_num /path/to/model_file
./cmake/build/paraformer_server 10108 4 /data/asrmodel/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-pytorch
Usage: ./cmake/build/paraformer_server port thread_num /path/to/model_file quantize(true or false)
./cmake/build/paraformer_server 10108 4 /data/asrmodel/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-pytorch false
```
funasr/runtime/onnxruntime/readme.md
@@ -16,9 +16,9 @@
###  运行程序
tester  /path/to/models/dir /path/to/wave/file
tester  /path/to/models/dir /path/to/wave/file quantize(true or false)
 例如: tester /data/models  /data/test.wav
 例如: tester /data/models  /data/test.wav false
/data/models 需要包括如下两个文件: model.onnx 和vocab.txt
funasr/runtime/onnxruntime/tester/tester.cpp
@@ -17,7 +17,7 @@
    if (argc < 3)
    {
        printf("Usage: %s /path/to/model_dir /path/to/wav/file quantize(true or false)", argv[0]);
        printf("Usage: %s /path/to/model_dir /path/to/wav/file quantize(true or false) \n", argv[0]);
        exit(-1);
    }
    struct timeval start, end;