user3243499
user3243499

Reputation: 3151

How to add new training phrases to Rasa NLU dynamically?

I have trained a Rasa bot. I want to add new training phrases to an intent via code and trigger intent so that this new training phrases is available for next utterance. How do I do that?

Could not find any relevant reference in the Rasa documentation. In case of Rasa interactive learning, it seams it is a manual process where a human has to sit an train the model.

Upvotes: 1

Views: 827

Answers (2)

Mohmadhaidar devjiyani
Mohmadhaidar devjiyani

Reputation: 587

I think you can use an Interactive session with bot. By doing this you can train bot with some new utterance and new answers

Upvotes: 1

tabergma
tabergma

Reputation: 101

You cannot train your Rasa model dynamically. If you add new training examples to your NLU data, you need to retrain the model to have the model understand the new intents. If you do interactive learning, you will generate new training data. That data can be used to re-train your model afterwards.

Upvotes: 3

Related Questions