0

I am looking for parsing trained project with multiple models other than only the last model in the project.

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

Please refer to https://nlu.rasa.com/http.html

I am trying this only because of my huge intents taking a large amount of time on a single file training in MITIE

Kishore Chandra
  • 596
  • 1
  • 5
  • 21

1 Answers1

1

In your old version you should be able do a request like this (documented here):

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

Tobias
  • 1,880
  • 11
  • 17