The format of NLU training data
In the previous chapter, we created an example project by using a command-line tool of Rasa. The project layout is as follows:
. ├── actions │ ├── actions.py │ └── __init__.py ├── config.yml ├── credentials.yml ├── data │ ├── nlu.yml │ ├── rules.yml │ └── stories.yml ├── domain.yml ├── endpoints.yml └── tests └── test_stories.yml
The data/nlu.yml
file in the project acts as the training data file for Rasa NLU. The training data file is written in YAML (short for YAML Ain't Markup Language) format. YAML is a general format for data storage and exchange. It...