Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
RapidASR
Commits
3aad0a8f
Commit
3aad0a8f
authored
Feb 26, 2023
by
mayong
Browse files
Merge branch 'main' of
https://github.com/RapidAI/RapidASR
# Conflicts: # cpp_onnx/src/lib/precomp.h
parents
e729ec95
37bdd34a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
2 deletions
+30
-2
.gitignore
.gitignore
+0
-2
cpp_onnx/CMakeLists.txt
cpp_onnx/CMakeLists.txt
+3
-0
cpp_onnx/readme.md
cpp_onnx/readme.md
+27
-0
No files found.
.gitignore
View file @
3aad0a8f
...
...
@@ -21,8 +21,6 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
...
...
cpp_onnx/CMakeLists.txt
View file @
3aad0a8f
...
...
@@ -18,6 +18,9 @@ IF(WIN32)
endif
()
ELSE
()
link_directories
(
${
ONNXRUNTIME_DIR
}
/lib
)
endif
()
#option(FASTASR_BUILD_PYTHON_MODULE "build python module, using FastASR in Python" OFF)
...
...
cpp_onnx/readme.md
View file @
3aad0a8f
...
...
@@ -41,3 +41,30 @@ pip install --editable ./
```
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 -DCMAKE_BUILD_TYPE=release .. -DONNXRUNTIME_DIR=/mnt/c/Users/ma139/RapidASR/cpp_onnx/build/onnxruntime-linux-x64-1.14.0
make
# then in the subfolder tester of current direcotry, you will see a program, tester
``
``
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment