I am looking this documentation because I want to run RASA NLU as a standalone server.
I have 2 folders in my VM, just like the documentation instructs me in the section about training my NLU.
One called project
that has some project’s data.
One called model
where I have the trained NLU model.
So…Why does it mount to an /app/projects
folder?
Doesn’t it mean /app/model
folder?
I have my trained models under ~/rasa/model/
.
By looking at the above docs, I try the following:
docker run -d -p 5000:5000 -v ~/rasa/model:/app/model rasa/rasa_nlu:latest start --path /app/model --port 5000
Is that correct?