自然语言处理 NLP-意图理解:响应消息
响应消息
参数名 |
参数类型 |
说明 |
---|---|---|
result |
Result object |
调用成功时的返回意图信息。 调用失败时无此字段。 请参见表4。 |
error_code |
String |
调用失败时的错误码。具体参见错误码。 调用成功时无此字段。 |
error_msg |
String |
调用失败时的错误信息。 调用成功时无此字段。 |
参数名 |
参数类型 |
说明 |
---|---|---|
text |
String |
返回待分析文本。 |
label |
String |
待分析文本的意图标签。标签共有以下9类: weather:天气,time:报时,news:新闻,joke:笑话,translation:翻译,notification:提醒,alarm:闹钟,music:音乐,others:其它。 |
confidence |
Float |
标签label的置信度。 |
slots |
Array of slot |
slot数据结构,请参见表5。 |
参数名 |
参数类型 |
说明 |
---|---|---|
word |
String |
实体文本。 |
tag |
String |
实体类型。对于每个意图类别所支持的实体类型分别为: weather:date(日期),time(时间),location(位置) time:location(位置),timezone(时区) news:genre(风格) joke:genre(风格) translation:content(内容) notification:content(内容),date(日期),time(时间),singer(歌手) alarm:date(日期),time:(时间) music:singer(歌手),song(歌曲),content(内容) |
offset |
Integer |
实体文本在待分析文本中的起始位置。 |
length |
Integer |
实体文本长度。 |
normalized_word |
String |
同义词或者其他标准表达的词,默认为原始的word。 |