├── .gitignore ├── LICENSE ├── README.md ├── banking ├── README.md └── nlu.yml ├── car-purchase ├── README.md └── nlu.yml ├── dashboard.png ├── education ├── README.md └── nlu.yml ├── fixing-internet ├── README.md └── nlu.yml ├── how-to-remove-entities ├── README.md └── entity-remove-script.py ├── mood ├── README.md └── nlu.yml ├── requirements.txt ├── restaurant ├── README.md └── nlu.yml ├── retail ├── nlu.yml └── readme.md ├── smalltalk ├── README.md └── nlu.yml ├── streamlit_app.py └── weather ├── README.md └── nlu.yml /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE Stuff 2 | .vscode/ 3 | .history 4 | *.DS_Store 5 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/README.md -------------------------------------------------------------------------------- /banking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/banking/README.md -------------------------------------------------------------------------------- /banking/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/banking/nlu.yml -------------------------------------------------------------------------------- /car-purchase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/car-purchase/README.md -------------------------------------------------------------------------------- /car-purchase/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/car-purchase/nlu.yml -------------------------------------------------------------------------------- /dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/dashboard.png -------------------------------------------------------------------------------- /education/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/education/README.md -------------------------------------------------------------------------------- /education/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/education/nlu.yml -------------------------------------------------------------------------------- /fixing-internet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/fixing-internet/README.md -------------------------------------------------------------------------------- /fixing-internet/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/fixing-internet/nlu.yml -------------------------------------------------------------------------------- /how-to-remove-entities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/how-to-remove-entities/README.md -------------------------------------------------------------------------------- /how-to-remove-entities/entity-remove-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/how-to-remove-entities/entity-remove-script.py -------------------------------------------------------------------------------- /mood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/mood/README.md -------------------------------------------------------------------------------- /mood/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/mood/nlu.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | clumper==0.2.9 2 | PyYAML==5.4.1 3 | streamlit==0.76.0 4 | -------------------------------------------------------------------------------- /restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/restaurant/README.md -------------------------------------------------------------------------------- /restaurant/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/restaurant/nlu.yml -------------------------------------------------------------------------------- /retail/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/retail/nlu.yml -------------------------------------------------------------------------------- /retail/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/retail/readme.md -------------------------------------------------------------------------------- /smalltalk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/smalltalk/README.md -------------------------------------------------------------------------------- /smalltalk/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/smalltalk/nlu.yml -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/streamlit_app.py -------------------------------------------------------------------------------- /weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/weather/README.md -------------------------------------------------------------------------------- /weather/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/NLU-training-data/HEAD/weather/nlu.yml --------------------------------------------------------------------------------