Hi , I am using new version 0.11.3, I am trying to enable fallback policy through rasa core train command. The below is my command
python -m rasa_core.train -s stories.md -d domain.yml -o models/dialogue --history 1 --nlu_threshold 0.1 --core_threshold 0.1 --fallback_action action_default_fallback --epochs 300
I have mentioned the utter_default template in domain.yml file and in stories defined like this
## fallback
- action_default_fallback
when checking with some random words i am getting the below error. Please help me to resolve
`2018-09-10 15:50:00 DEBUG rasa_core.tracker_store - Creating a new tracker for id ādefaultā. 2018-09-10 15:50:00 DEBUG rasa_core.processor - Received user message āgive me kickā with intent ā{ānameā: None, āconfidenceā: 0.0}ā and entities ā[]ā 2018-09-10 15:50:00 DEBUG rasa_core.processor - Logged UserUtterance - tracker now has 2 events 2018-09-10 15:50:00 DEBUG rasa_core.processor - Current slot values:
2018-09-10 15:50:00 DEBUG rasa_core.policies.fallback - NLU confidence 0.0 is lower than NLU threshold 0.1. Predicting fallback action: action_default_fallback 2018-09-10 15:50:00 DEBUG rasa_core.policies.memoization - Current tracker state [{āprev_action_listenā: 1.0}] 2018-09-10 15:50:00 DEBUG rasa_core.policies.memoization - There is no memorised next action 2018-09-10 15:50:00 DEBUG rasa_core.policies.ensemble - Predicted next action using policy_0_FallbackPolicy 2018-09-10 15:50:00 DEBUG rasa_core.processor - Predicted next action āaction_default_fallbackā with prob 1.00. 2018-09-10 15:50:00 ERROR rasa_core.processor - Encountered an exception while running action āaction_default_fallbackā. Bot will continue, but the actions events are lost. Make sure to fix the exception in your custom code. 2018-09-10 15:50:00 ERROR rasa_core.processor - The model predicted the custom action āaction_default_fallbackā but you didnāt configure an endpoint to run this custom action. Please take a look at the docs and set an endpoint configuration. https://rasa.com/docs/core/customactions/`
Please correct me if i am missing any steps?