Hello,
I’ve succesfully shared my bot, but the problem is it will break it self after a few messages.
The problem is that it will predict action_default_fallback
even though it can correctly identify the intent, even with high confidence.
I have not used the action, so I dont understand where it’s coming from.
I tried going into debug mode on the command interface to see if there was a meaningful error. This was the output:
2021-05-12 19:29:52 DEBUG rasa.core.lock_store - Issuing ticket for conversation '15a51c34df1d42d58914d4caae7a647f'.2021-05-12 19:29:52
DEBUG rasa.core.lock_store - Acquiring lock for conversation '15a51c34df1d42d58914d4caae7a647f'.2021-05-12 19:29:52
DEBUG rasa.core.lock_store - Acquired lock for conversation '15a51c34df1d42d58914d4caae7a647f'. 2021-05-12 19:29:52 DEBUG rasa.core.tracker_store - Recreating tracker for id '15a51c34df1d42d58914d4caae7a647f'
`2021-05-12 19:29:52
DEBUG rasa.core.processor - Received user message 'jeg forstår ikke hvad der menes med for lidt?' with intent '{'id': -7753130457771574260, 'name': 'Slider', 'confidence': 0.9963321089744568}' and entities '[]' 2021-05-12 19:29:52 DEBUG rasa.core.processor - Logged UserUtterance - tracker now has 11 events. 2021-05-12 19:29:52 DEBUG rasa.core.policies.memoization - Current tracker state:
[state 1] user intent: Slider | previous action name: action_listen
[state 2] user intent: Slider | previous action name: utter_Slider
[state 3] user intent: Slider | previous action name: utter_Assistance
[state 4] user intent: Slider | previous action name: action_listen
2021-05-12 19:29:52 DEBUG rasa.core.policies.memoization - There is no memorised next action
2021-05-12 19:29:52 DEBUG rasa.core.policies.rule_policy - Current tracker state:
[state 1] user intent: Slider | previous action name: action_listen
[state 2] user intent: Slider | previous action name: utter_Slider
[state 3] user intent: Slider | previous action name: utter_Assistance
[state 4] user text: jeg forstår ikke hvad der menes med for lidt? | previous action name: action_listen
2021-05-12 19:29:52 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2021-05-12 19:29:52 DEBUG rasa.core.policies.rule_policy - Current tracker state:
[state 1] user intent: Slider | previous action name: action_listen
[state 2] user intent: Slider | previous action name: utter_Slider
[state 3] user intent: Slider | previous action name: utter_Assistance
[state 4] user intent: Slider | previous action name: action_listen
2021-05-12 19:29:52 DEBUG rasa.core.policies.rule_policy - There is no applicable rule.
2021-05-12 19:29:52 DEBUG rasa.core.policies.ensemble - Made prediction using user intent.
2021-05-12 19:29:52 DEBUG rasa.core.policies.ensemble - Added
DefinePrevUserUtteredFeaturization(False) event.
2021-05-12 19:29:52 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_2_RulePolicy.
2021-05-12 19:29:52 DEBUG rasa.core.processor - Predicted next action 'action_default_fallback' with confidence 0.30.
2021-05-12 19:29:52 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_default_fallback'.
What am i doing wrong?
Thanks in advance