Hello! I have a problem migrating from Rasa 0.14.5 (nlu) and 0.15.1 (core) to Rasa 1.10.10. Details:
- data is almost the same
- I reused as much settings from the old config as I could
- The performance is way worse
So I thought I should as a question: How much the components internally differ between new and old versions of Rasa?
KerasPolicy and AugmentedMemoizationPolicy components in Rasa 1.x.x are not as effective as they were in the old Rasa. E.g. Rasa core 0.15.1 showed great performance with these configs:
- name: KerasPolicy max_history: 4-5 batch_size: [128, 512] epochs: 300
- name: AugmentedMemoizationPolicy: max_history: 4-5
- name FallbackPolicy nlu_threshold: 0.7 core_threshold: 0.5
With Rasa 1.10.10 these configs perform rather poorly. And also I think I don’t fully understand what max_history does exactly: does it contain only user_intent-bot_action pairs, or default internal actions also (action_listen, etc.)?
It is the same with DIETClassifier: it also performs worse than EmbeddingIntentClassifier with the same configs.