赞
踩
参考:
https://github.com/PaddlePaddle/PaddleSpeech
安装后运行可能会numpy相关报错;可能是python和numpy版本高的问题,我这里最终解决是python 3.10 numpy 1.22.0;
pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
pip install paddlespeech
模型默认下载保存位置:C:\Users\loong.paddlespeech\models下
from paddlespeech.cli.asr.infer import ASRExecutor
asr = ASRExecutor()
result = asr(audio_file="zh.wav") ##第一次运行会首先下载自动模型
print(result)
###标点恢复
!paddlespeech text --task punc --input 今天的天气真不错啊你下午有空吗我想约你一起去吃饭
##或
from paddlespeech.cli.text.infer import TextExecutor
text_punc = TextExecutor()
result = text_punc(text="今天的天气真不错啊你下午有空吗我想约你一起去吃饭")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。