This commit is contained in:
zhousha
2025-08-06 15:38:55 +08:00
parent 4916ad0fe0
commit 55a67e817e
193 changed files with 51647 additions and 1 deletions

17
utils/pynini/README.md Normal file
View File

@@ -0,0 +1,17 @@
# pynini
## 背景
SpeechIO对英文ASR的评估工具依赖第三方库pyninihttps://github.com/kylebgorman/pynini该库强绑定OS和gcc版本需要在运行环境中编译生成wheel包本文说明编译pynini生成wheel包的方法
## 编译
```shell
docker build -t build-pynini-wheels .
```
## 获取wheel包
```shell
docker run --rm -v `pwd`:/io build-pynini-wheels cp -r /wheelhouse /io
```