从多个模型解析 Rasa NLU

Parsing Rasa NLU from multiple models

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

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

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

我尝试这个只是因为我的巨大意图在 MITIE 中花费大量时间进行单个文件训练

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

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