gpt4 book ai didi

python - 如何获得对 Pocket Sphinx 转录的信心

转载 作者:太空宇宙 更新时间:2023-11-04 04:05:56 25 4
gpt4 key购买 nike

我正在使用 sphinx 将音频转换为文本,但我找不到如何访问每个单词的置信度得分

我可以访问转录输出,但无法获得模型背后的估计概率。这感觉很基本,但我找不到合适的文档。我应该在下面添加什么?

test = sr.AudioFile(audio_file)
Recon = sr.Recognizer()

with test as source:
test_audio = Recon.record(source)
text = Recon.recognize_sphinx(test_audio,language = 'en-US')```

最佳答案

当前版本的语音识别未返回置信度结果。如果您查看 implementation :

def recognize_sphinx(...):
...
# return results
hypothesis = decoder.hyp()
if hypothesis is not None: return hypothesis.hypstr
raise UnknownValueError() # no transcriptions available

您会看到仅返回文本结果 (hypothesis.hypstr),而置信度在 hypothesis.prob 中。一个快速的解决方法是复制粘贴 entire method单独安装 pocketsphinx 后:

pip install pocketsphinx

关于python - 如何获得对 Pocket Sphinx 转录的信心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57350706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com