Getting error using Interactive Learning

Hi

I was following this

Writing Conversation Data

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 -

image

try --online instead, maybe an error in the documentation

1 Like

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)

1 Like

Indeed, I mixed the run and train command. Sorry about that

The above command is correct

Hi. I’ve another problem with interactive learning method,

What am I doing wrong here?