在调用用于主题检测的API时,我作为请求的一部分提交了stopPhrases列表,如下例所示。但是,我得到的成功响应仍然包含stopPhrases中特别定义的主题。我使用Microsoft定义的格式 - 如下所示。唯一的区别是我将stopPhrases和stopWords放在JSON字符串的顶部。
{
"documents": [
{
"id": "1",
"text": "First document"
},
...
{
"id": "100",
"text": "Final document"
}
],
"stopWords": [
"issue", "error", "user"
],
"stopPhrases": [
"Microsoft", "Azure"
]
}