Training and Data Format RASA NLU

How does the structure for data Rasa NLU learns from look like?

Overview of training data structure
  • common_examples : used to train entity and intent models

  • regex_features : a tool to help the classifier detect entities or intents

  • entitiy_synonyms:

Train data is used to teach the model how inents and entities look like.

Regular Expression can be used to detect common patterns or structures in the data like zip codes or urls.
Examples for Markdown Format
Traing a model with a script and its options

There are 3 ways to train a model

  • With a script

  • With own python code

  • With Http server

Last updated