Hello,
We have trained our model with the configuration below in rasa 1.3.7 environment.
For the story path we have, we observe that once the user affirms on being asked with “is there anything else”, The model goes to a loop on the same path, we see that it doesn’t end this story path and match with other story path. But instead, irrespective of any “questions” asked, it matches with affirm and gives utter_help.
Any reason for this behavior ??
---------STORY PATH---------------
- question1 OR question2
- action_answer
- utter_anythingelse
- anythingelse{“anythingelse_value”: “yes”} OR affirm
- slot{“anythingelse_value”: “yes”}
- utter_help
--------Domain’s Template----------- utter_help:
- text: “How can I help you ?”
utter_anythingelse:
- text: "Is there anything else I can help you with?"
buttons:
- title: "Yes"
payload: '/anythingelse{"anythingelse_value":"yes"}'
- title: "No"
payload: '/anythingelse{"anythingelse_value":"no"}'
---------CONFIGURATION------------
pipeline:
- name: “WhitespaceTokenizer”
- name: “RegexFeaturizer”
- name: “CRFEntityExtractor”
- name: “EntitySynonymMapper”
- name: “CountVectorsFeaturizer”
- name: “EmbeddingIntentClassifier”
policies:
-
name: KerasPolicy epochs: 100 max_history: 5 priority: 1 batch_size: 100 validation_split: 0.2
-
name: MappingPolicy priority: 2
-
name: MemoizationPolicy max_history: 5 priority: 3
-
name: TwoStageFallbackPolicy
:
:
: