首页 > 解决方案 > 从多个模型中解析 Rasa NLU

问题描述

我正在寻找使用多个模型解析训练有素的项目,而不仅仅是项目中的最后一个模型。

curl -XPOST localhost:5000/parse -d '{"q":"hello there", "project":"my_restaurant_search_bot"}'

请参考https://nlu.rasa.com/http.html

我之所以尝试这个只是因为我的巨大意图在 MITIE 的单个文件培训上花费了大量时间

标签: pythonrasa-nlu

解决方案


在您的旧版本中,您应该能够执行这样的请求(在此处记录):

curl -XPOST localhost:5000/parse -d '{"q":"hello there", "project": "my_restaurant_search_bot", "model": "<model_XXXXXX>"}'


推荐阅读