Predicting wrong action for Story

When adding the story like this

story_00055028

  • greet: hello
  • utter_ask_howcanhelp
  • utter_on_it
  • utter_ask_location

It is not working

not predicting right action

WARNING rasa.core.featurizers - Feature ‘intent_greet: hello’ could not be found in feature map.

Thanks

Hi @shashank34, end to end format is currently only supported for testing, not training. your story should look like this:

## story_00055028
* greet
 - utter_ask_howcanhelp
* inform
 - utter_on_it
 - utter_ask_location

and then the nlu data in your NLU files.

thanks @erohmensing