Can you put both files in a data folder and pass that to the data flag? I can’t check at the moment but I think both go to the -data argument, with no -u argument. You’ll also want a combined (policies and pipeline) config for the config flag.
2019-04-25 12:36:08 WARNING rasa.core.training.generator - There is no starting story block in the training data. All your story blocks start with some checkpoint. There should be at least one story block that starts without any checkpoint.
2019-04-25 12:36:08 INFO rasa.core.policies.ensemble - Skipped training, because there are no training samples.
And then later
2019-04-25 12:36:09 WARNING rasa.nlu.classifiers.sklearn_intent_classifier - Can not train an intent classifier. Need at least 2 different classes. Skipping training of intent classifier.
The model is indeed being written out, but shell won’t start when this model is provided via -m argument
As a side note @erohmensing do I need to restart the shell every time I train a model, or is RASA smart enough to use the new model without a restart to rasa shell?
rasa shell starts a server, so any new changes after the server runs won’t get updated. You’ll have to restart the shell to get any new changes including a newly trained model. This isn’t really a question of it being “smart enough”, it’s about your currently running server not breaking when you change things.