我遵循的步骤:
- 首先创建语料库,然后在其中发送创建文档。
检查文档的处理是否准备就绪(完成处理)
https://gateway.watsonplatform.net/concept-insights/api/v2/corpora/{account-id}/{corpus-name}/documents/{document-name}/processing_state
如果它准备好了,那么我检索文档中的相关概念
https://gateway.watsonplatform.net/concept-insights/api/v2/corpora/{account-id}/{corpus-name}/documents/{document-name}/related_concepts
以上所有步骤都有效(我从 Bluemix 服务器收到 200/201 回复)。
问题出在第 2 步的回复中。我不断收到以下回复
{ "status": "processing", "last_modified": "2015-11-10T15:27:12.473Z" }
但是当我执行第 3 步时,我得到了想要的响应(文档中的相关概念)
{
"concepts" : [
{
"score" : ...,
"concept" : {
"id": "........",
"label": ".....
}
}, .....
]
}
更新
processing_state API 问题已得到修复。给出所需的响应