Getting error using Interactive Learning - Rasa Open Source - Rasa Community Forum

Getting error using Interactive Learning

post by NikhilBansal21 on Sep 10, 2018

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 -


post by souvikg10 on Sep 10, 2018

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


post by NikhilBansal21 on Sep 11, 2018

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


post by souvikg10 on Sep 11, 2018


python -m rasa_core.train --online -d models/current/dialogue -u models\nlu\default\current --stories-out stories/stories.md

post by ahson on Sep 13, 2018

Tried the above comment and got this error

train.py: error: argument -o/–out is required


post by souvikg10 on Sep 14, 2018

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

post by e8180kimo on Sep 24, 2018

doesnt work.

train.py: error: one of the arguments -s/–stories --url --core is required


post by srikar_1996 on Oct 4, 2018

This is working for me.

python -m rasa_core.train --online -d (domain file) -s (stories) -u (nlu model) -o (output directory)


post by souvikg10 on Oct 4, 2018

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

The above command is correct


post by Sayak9495 on Dec 17, 2018

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

What am I doing wrong here?