I have the following in my config.yml.
pipeline:
- name: WhitespaceTokenizer
- name: RegexEntityExtractor
- name: LexicalSyntacticFeaturizer
- name: CountVectorsFeaturizer
analyzer: char_wb
min_ngram: 1
max_ngram: 4
- name: DIETClassifier
epochs: 100
constrain_similarities: true
- name: EntitySynonymMapper
- name: ResponseSelector
epochs: 100
constrain_similarities: true
policies:
- name: TEDPolicy
max_history: 5
epochs: 100
constrain_similarities: true
model_confidence: linear_norm
- name: MemoizationPolicy
- name: RulePolicy
The problem is, the stories and rules are created and the model is trained using ‘rasa train’ command. It works fine accordingly as expected. But when I retrain the model, the behavior of the rasa assistant changes and the flow breaks. Not sure why this is happening. Any help would be appreciated.