I am using Rasa 1.10.x , Having problems when with the policies chosen.
I built a form to collect data from users and validate it, on the happy path the forms and follow-up actions work fine. while on the un-happy path if any validation is broken it continues correctly and deactivates the form then Fallback Policy is activated.
policies:
- name: FallbackPolicy
nlu_threshold: 0.6
core_threshold: 0.5
fallback_action_name: 'action_my_default_fallback'
- name: AugmentedMemoizationPolicy
- name: MemoizationPolicy
- name: FormPolicy
Happy Path :
botfront-rasa | 2021-03-29 16:19:29 DEBUG rasa.core.policies.form_policy - There is no active form
botfront-rasa | 2021-03-29 16:19:29 DEBUG rasa.core.policies.ensemble - best policy prediction policy_1_AugmentedMemoizationPolicy with confidence (1.0, 3) vs form policy policy_3_FormPolicy with confidence (0.0, 5)
botfront-rasa | 2021-03-29 16:19:29 DEBUG rasa.core.policies.ensemble - Best policy prediction policy_1_AugmentedMemoizationPolicy
botfront-rasa | 2021-03-29 16:19:29 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_1_AugmentedMemoizationPolicy
botfront-rasa | 2021-03-29 16:19:29 DEBUG rasa.core.processor - Predicted next action 'action_listen' with confidence 1.00.
Un-happy Path:
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.policies.memoization - There is no memorised next action
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.policies.form_policy - There is no active form
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.policies.ensemble - best policy prediction policy_0_FallbackPolicy with confidence (0.5, 4) vs form policy policy_3_FormPolicy with confidence (0.0, 5)
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.policies.ensemble - Best policy prediction policy_0_FallbackPolicy
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.policies.ensemble - Predicted next action using policy_0_FallbackPolicy
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.processor - Predicted next action 'action_my_default_fallback' with confidence 0.50.
botfront-rasa | 2021-03-29 16:08:43 DEBUG rasa.core.actions.action - Calling action endpoint to run action 'action_my_default_fallback'.
botfront-actions | 2021-03-29 16:08:43 DEBUG rasa_sdk.executor - Received request to run 'action_my_default_fallback'
botfront-actions | 2021-03-29 16:08:43 DEBUG rasa_sdk.executor - Finished running 'action_my_default_fallback'
How I should approach this . Thanks in advance