Unverified Commit 6fbcb53d authored by Daniel's avatar Daniel Committed by GitHub
Browse files

Update readme.md

parent 8b3a8f8c
...@@ -41,3 +41,27 @@ pip install --editable ./ ...@@ -41,3 +41,27 @@ pip install --editable ./
``` ```
python -m funasr.export.export_model 'damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-pytorch' "./export" true python -m funasr.export.export_model 'damo/speech_paraformer-large_asr_nat-zh-cn-16k-common-vocab8404-pytorch' "./export" true
``` ```
## Building Guidance
```
git clone https://github.com/RapidAI/RapidASR.git
cd RapidASR/cpp_onnx/
mkdir build
cd build
# download an appropriate onnxruntime from https://github.com/microsoft/onnxruntime/releases/tag/v1.14.0
# here we get a copy of onnxruntime for linux 64
wget https://github.com/microsoft/onnxruntime/releases/download/v1.14.0/onnxruntime-linux-x64-1.14.0.tgz
#ls
# onnxruntime-linux-x64-1.14.0 onnxruntime-linux-x64-1.14.0.tgz
#install fftw3-dev
apt install libfftw3-dev
#install openblas
apt install libopenblas-dev
# build
cmake ../ -DONNXRUNTIME_DIR=onnxruntime-linux-x64-1.14.0
````
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment