gpt4 book ai didi

python - IBM Watson Speech-to-Text Python, 'DetailedResponse' 对象没有属性 'getResult'

转载 作者:太空宇宙 更新时间:2023-11-03 21:48:11 24 4
gpt4 key购买 nike

我正在使用 Python 在 Flask 中设计一个项目,该项目利用 IBM Watson 的语音转文本功能。我现在要做的就是加载 FLAC 文件 (0001.flac),通过 Watson 解释该文件,并将结果打印到我的控制台。到目前为止,我编写了以下代码(我替换了示例中的用户名和密码):

from werkzeug import secure_filename
import pprint, json, os
from watson_developer_cloud import SpeechToTextV1

. . .

speech_to_text = SpeechToTextV1(
username='My username is here',
password='My password is here')

with open(os.path.join(os.path.dirname(__file__), '0001.flac'), 'rb') as audio_file:
speech_to_text.set_detailed_response(True)
outthis = speech_to_text.recognize(
audio_file, content_type='audio/flac', timestamps=True)
pprint.pprint(json.dumps(outthis.getResult(), indent=2))

这是我的输出:

[2018-09-13 11:46:36,553] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\env\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\env\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\env\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\env\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\env\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\env\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:\Users\ehill\source\repos\FlaskWebProject1\FlaskWebProject1\FlaskWebProject1\views.py", line 31, in home
pprint.pprint(json.dumps(outthis.getResult(), indent=2))
AttributeError: 'DetailedResponse' object has no attribute 'getResult'

根据 Watson 文档 ( https://www.ibm.com/watson/developercloud/speech-to-text/api/v1/python.html?python#introduction ),我应该能够通过DetailedResponse 对象上的 getResult 接收信息。我做错了什么?

最佳答案

我在我们的 CI 环境中看到了同样的情况,它从一个干净的环境运行“pip install”。它看起来像是 watson_developer_cloud v2.0.0 ( https://pypi.org/project/watson-developer-cloud/2.0.0/#changes-for-v2.0 ) 引入的重大更改。

我暂时通过强制使用版本 1.7.1 来解决,直到我可以更深入地查看代码更改。看起来这可能是一个很小的变化(从response.get到response.get_result,但我不能确定)。

仅供引用 - 以下是 2.0 版本中的重大更改列表:https://github.com/watson-developer-cloud/python-sdk/wiki/Migration

关于python - IBM Watson Speech-to-Text Python, 'DetailedResponse' 对象没有属性 'getResult',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52318423/

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