├── .gitignore ├── Makefile ├── README.md ├── actions.py ├── data └── core │ ├── test │ └── simulated_hotel_test.md │ └── train │ ├── hotel_happy.md │ ├── restaurant_happy.md │ ├── simulated_hotel_train.md │ └── simulated_restaurant_train.md ├── domain.yml ├── endpoints.yml ├── get_vectors_out.ipynb ├── lstm_bin.yml ├── lstm_feat.yml ├── redp.yml ├── requirements.txt └── services ├── __init__.py └── apis.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | venv/ 3 | *.DS_Store 4 | models/ 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/README.md -------------------------------------------------------------------------------- /actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/actions.py -------------------------------------------------------------------------------- /data/core/test/simulated_hotel_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/data/core/test/simulated_hotel_test.md -------------------------------------------------------------------------------- /data/core/train/hotel_happy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/data/core/train/hotel_happy.md -------------------------------------------------------------------------------- /data/core/train/restaurant_happy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/data/core/train/restaurant_happy.md -------------------------------------------------------------------------------- /data/core/train/simulated_hotel_train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/data/core/train/simulated_hotel_train.md -------------------------------------------------------------------------------- /data/core/train/simulated_restaurant_train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/data/core/train/simulated_restaurant_train.md -------------------------------------------------------------------------------- /domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/domain.yml -------------------------------------------------------------------------------- /endpoints.yml: -------------------------------------------------------------------------------- 1 | action_endpoint: 2 | url: http://localhost:5055/webhook 3 | -------------------------------------------------------------------------------- /get_vectors_out.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/get_vectors_out.ipynb -------------------------------------------------------------------------------- /lstm_bin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/lstm_bin.yml -------------------------------------------------------------------------------- /lstm_feat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/lstm_feat.yml -------------------------------------------------------------------------------- /redp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/redp.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RasaHQ/conversational-ai-workshop-18/HEAD/services/apis.py --------------------------------------------------------------------------------