I have deployed rasa x onto google cloud platform, (Following rasa master class episode 9) I have linked github also, and all the training data is available as well.
But when I train the model, it dosn’t do anything.( no models come up)
I tried uploading a pre trained model from my local environment.But it dosn’t respond.
This is my github repo
I have also added a docker-compose.override.yml
version: '3.4'
services:
app:
image: 'rasa/rasa-sdk:latest'
volumes:
- './actions:/app/actions'
expose:
- '5055'
depends_on:
- rasa-production
rasa-production:
environment:
- DEFAULT_STREAM_READING_TIMEOUT_IN_SECONDS=25
Could it be any issues in the file ??
The rasa x is up, but I can’t find any models to talk to. Uploaded model dosn’t respond too.
Please help.