Rasa NLU-About

Rasa NLU:Chatbots和AI助手的语言理解

Rasa NLU是一个开源自然语言处理工具,用于聊天机器人中的意图分类,响应检索和实体提取。例如,如下面这个句子:

"I am looking for a Mexican restaurant in the center of town"

并返回结构化数据

{
  "intent": "search_restaurant",
  "entities": {
    "cuisine" : "Mexican",
    "location" : "center"
  }
}

Rasa NLU曾经是一个独立的库,但现在它是Rasa框架的一部分。

你可能感兴趣的:(Rasa NLU-About)