Hi
I was following this
for training my bot
command -
python -m rasa_core.run --interactive -d models/current/dialogue -u models\nlu\default\current --stories-out stories/stories.md
i am getting this error -
Hi
I was following this
for training my bot
command -
python -m rasa_core.run --interactive -d models/current/dialogue -u models\nlu\default\current --stories-out stories/stories.md
i am getting this error -
try --online instead, maybe an error in the documentation
tried online command like this
python -m rasa_core.run --online -d models/current/dialogue -u models\nlu\default\current --stories-out stories/stories.md
still displaying
run.py: error: unrecognized arguments: --online --stories-out stories/stories.md
python -m rasa_core.train --online -d models/current/dialogue -u models\nlu\default\current --stories-out stories/stories.md
Tried the above comment and got this error
train.py: error: argument -o/–out is required
sorry made a mistake in the command there, it should be
python -m rasa_core.train --online -d models/current/dialogue -u models\nlu\default\current --out dialogue
doesnt work.
train.py: error: one of the arguments -s/–stories --url --core is required
This is working for me.
python -m rasa_core.train --online -d (domain file) -s (stories) -u (nlu model) -o (output directory)
Indeed, I mixed the run and train command. Sorry about that
The above command is correct