Switch between NLU models in Rasa core as we do in rasa nlu.
See original GitHub issueSimilar to #2874 I want to ask, if it is possible to optionally pass a nlu model parameter to rasa core during a request via HTTP API.
In the docs, I can only find the option to set the nlu model in rasa core during the start with the -u
parameter:
$ python -m rasa_core.run \
--enable_api \
-d models/dialogue \
-u models/nlu/current \
-o out.log
But in rasa nlu you can change the model for each request:
$ curl -XPOST localhost:5000/parse -d '{"q":"hello there", "model": "<model_XXXXXX>"}'
Would be nice to have this flexibility in the rasa core HTTP API too.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Switch between NLU models in Rasa core as we do in rasa nlu.
Similar to #2874 I want to ask, if it is possible to optionally pass a nlu model parameter to rasa core during a...
Read more >How to switch between models in rasa core
I want to switch between project as we do in rasa-nlu by specifying the project name. how is it possible in rasa core...
Read more >Tuning Your NLU Model - Rasa
Rasa will provide you with a suggested NLU config on initialization of the project, but as your project grows, it's likely that you...
Read more >Using NLU Only - Rasa
This will look for NLU training data files in the data/ directory and saves a trained model in the models/ directory. The name...
Read more >NLU Training Data - Rasa
Read more about how to format training data with Rasa NLU for open source natural language processing.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you for the response and this awesome project!
Seems to be solved since Rasa 1.0. Great work guys!