RASA Version: 1.1.5
Tried trainnig the model using the train function as below.
model_path = train(domain_filepath, config_filepath, data_filepath, models_filepath, {‘augmentation_factor’:40})
Intent recognistion works fine. But the core training doesnt seem to be complete. I get the responses for only the first message and then fallback is triggered for all the messages.
policies:
- name: “MemoizationPolicy” max_history: 7
- name: “KerasPolicy”
- name: “FallbackPolicy” nlu_threshold: 0.5 core_threshold: 0.3 fallback_action_name: “action_fallback”
- name: “FormPolicy”
I’m using the same training data with the same policies for another bot with RASA Nlu: 0.13.7 RASA Core: 0.12.1 and everything works fine there. Any suggestions would be really helpful.