I am studying Rasa and I'm having some problem with running the dialog model.
python3 -m rasa_core.train -s data/stories.md -d domain.yml -o models/dialogue --epochs 300
Error!
ruamel.yaml.constructor.ConstructorError: could not determine a constructor for the tag 'tag:yaml.org,2002:python/str'
in "/my/app/path/venv/lib/python3.6/site-packages/rasa_core/schemas/domain.yml", line 4, column 11
Rasa Core
Upon looking at the domain.yml from rasa_core, it seems that the problem is with double exclamation marks !!
domain.yml
allowempty: True
mapping:
intents:
type: !!python/str "seq"
Read, another post about double exclamation marks from here.