1

我编写了一组 Python 函数来与 Bluemix/Watson Concept Insights API交互。我能够生成一个令牌并使用它从服务器获取结果,但结果很糟糕:它远不及我将相同信息插入他们的Swagger 测试实用程序时得到的结果。

我怀疑我发送请求的方式有问题,但我不太清楚是什么。代码如下。首先,来自event_insight_lib.py

def importCredentials(filename='credentials.json'):
    if filename in [f for f in os.listdir('.') if os.path.isfile(f)]:
        data = json.load(open(filename))['concept_insights'][0]['credentials']
        return data

def generateToken(filename='credentials.json'):
    credentials = importCredentials(filename)
    r = requests.get("https://gateway.watsonplatform.net/authorization/api/v1/token\?url=https://stream.watsonplatform.net/concept-insights/api", auth=(credentials['username'], credentials['password']))
    if r.status_code == requests.codes.ok:
        return r.text

def annotateText(text, token, content_type = 'text/plain'):
    base_url='https://watson-api-explorer.mybluemix.net/concept-insights/api/v2/graphs/wikipedia/en-20120601/annotate_text'
    headers = {'X-Watson-Authorization-Token': token, 'Content-Type': content_type}
    r = requests.post(base_url, headers=headers, data={'body': text})
    return r.text

这些方法由以下人员执行event_insight.py

token = event_insight_lib.generateToken()
ret = event_insight_lib.annotateText("""long string being concept-analyzed...""", token)
    print(ret)

输出差异的完整演示在这里。完整的代码库在这里。我对 Requests 库不是很有经验:在 Pythonic 端的某个地方是否存在细微的错误?

IBM 文档的相关部分在此处

4

1 回答 1

2

正如@engineerc 建议的那样,您发送的是dict()as data。引用您的评论data=text.encode(encoding='UTF-8', errors='ignore')是您问题的解决方案。


另一方面,请不要使用 https://watson-api-explorer.mybluemix.net,它是我们用来托管 swagger 文档的代理应用程序。
服务网址是: https://gateway.watsonplatform.net/concept-insights/api

此外,我们有一个支持ConceptInsightsannotate_text调用的 python-sdk。

这是一个 pip 模块,因此您将执行以下操作:

pip install watson-developer-cloud

调用annotate_text它很简单:

import json
from watson_developer_cloud import ConceptInsightsV2 as ConceptInsights


concept_insights = ConceptInsights(
    username='YOUR SERVICE USERNAME',
    password='YOUR SERVICE PASSWORD')

annotations = concept_insights.annotate_text('IBM Watson won the Jeopardy television show hosted by Alex Trebek')
print(json.dumps(annotations, indent=2))
于 2016-03-15T19:16:40.157 回答