You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello ,
I am trying to deploy using helm and i want an inital model to be trained. i have downloaded my bot files and placed it into a directory under "app" name with the rasa-values.yml . i saw on the documentation that we can download and train an initial model
here is my configuration
-- Specify additional volumes to mount in the rasa-oss container
volumeMounts:
name: models
mountPath: /app
readOnly: true
could you help me please ? the model is not trained despite i can reach my bot and i think its the starting project of rasa that is loaded (tested with curl)
am not using rasa x yet (they said it will be remove so..)
The text was updated successfully, but these errors were encountered:
Hello ,
I am trying to deploy using helm and i want an inital model to be trained. i have downloaded my bot files and placed it into a directory under "app" name with the rasa-values.yml . i saw on the documentation that we can download and train an initial model
here is my configuration
initContainers:
image: "busybox"
command: ["/bin/sh", "-c"]
args:
volumeMounts:
name: models
-- Specify additional volumes to mount in the rasa-oss container
Ref: https://kubernetes.io/docs/concepts/storage/volumes/
volumes:
- name: models
emptyDir: {}
-- Specify additional volumes to mount in the rasa-oss container
volumeMounts:
mountPath: /app
readOnly: true
could you help me please ? the model is not trained despite i can reach my bot and i think its the starting project of rasa that is loaded (tested with curl)
am not using rasa x yet (they said it will be remove so..)
The text was updated successfully, but these errors were encountered: