Watson 对话意图分析
Watson Conversation Intent Analytics
我看到在 Watson Conversation 工具中,我们可以看到按对话意图细分的用法 activity。有没有办法通过对话访问此意图使用数据API?
Watson Conversation service has an API to access and modify the workspace, its components and to obtain the logs. The REST function to retrieve (list) the logs 有参数要传入一些过滤器。
我不久前写了一个 Python-based tool,它利用了大部分 API 并演示了它的用法。它支持日志检索。请注意,日志可用的持续时间取决于使用计划。
您需要像这样访问 call for the conversation message and get the intent with the return, something:response.intents.intent
如@data_henrik所说,会话工具可以使用getLogs方法获取all return, intents
, entities
、context
变量、input
来自用户和您的机器人等
请在此处查看官方 reference。
我看到在 Watson Conversation 工具中,我们可以看到按对话意图细分的用法 activity。有没有办法通过对话访问此意图使用数据API?
Watson Conversation service has an API to access and modify the workspace, its components and to obtain the logs. The REST function to retrieve (list) the logs 有参数要传入一些过滤器。
我不久前写了一个 Python-based tool,它利用了大部分 API 并演示了它的用法。它支持日志检索。请注意,日志可用的持续时间取决于使用计划。
您需要像这样访问 call for the conversation message and get the intent with the return, something:response.intents.intent
如@data_henrik所说,会话工具可以使用getLogs方法获取all return, intents
, entities
、context
变量、input
来自用户和您的机器人等
请在此处查看官方 reference。