我们可以一起使用 LUIS 和文本分析 API

Can we use LUIS and Text Analytics API together

我需要在 azure 上开发一个用于用户交互的聊天机器人我已经使用了 LUIS,现在希望该机器人能够分析聊天并建议用户进行必要的更改。那么,我应该使用文本分析 API 吗?LUIS 和文本分析 API 可以一起使用吗?

文本分析可以determine sentiments, extract key phrases and detect the language used. If you want to find the intent of the user or extract entities from a text, you can use LUIS

对于 "The hotel is the worst ever",情绪分析可以表明情绪是负面的。对于同一个句子,关键短语提取提取关键words/phrases:"hotel, worst",不对含义或上下文进行任何解释。

对于 "Turn on the yellow light",可以训练 LUIS 来提取具有意义和上下文的意图(操作灯)和实体(动作:打开,对象:黄灯)。

文本分析和 LUIS 公开单独的 API,这些 API 仅将文本作为输入,因此它们可以相互独立使用。它们之间没有内置集成,因此这取决于消费者来实现。