How to adjust correct config in my bot?

Hi, I am building a huge bot that concludes actions, custom actions, nlu fallback, intents, custom channel, third party APIs and others.

When my bot was smaller, it worked fine. But now huge code is written, and it doesn’t work correctly. I think, the reason is in pipeline and policies of config.yml althought I can’t find core reason.

Here is my current config file:

recipe: default.v1 language: en pipeline:

  • name: WhitespaceTokenizer
  • name: LexicalSyntacticFeaturizer features: [ [“low”, “title”, “upper”] ]
  • name: CountVectorsFeaturizer analyzer: char_wb min_ngram: 2 max_ngram: 3
  • name: DIETClassifier epochs: 2050 constrain_similarities: True
  • name: ResponseSelector epochs: 2050
    constrain_similarities: True
  • name: FallbackClassifier threshold: 0.3 policies:
  • name: MemoizationPolicy
  • name: RulePolicy core_fallback_threshold: 0.3 core_fallback_action_name: “action_default” enable_fallback_prediction: True
  • name: TEDPolicy max_history: 5 epochs: 100 constrain_similarities: true

Please help me, thank you.

When you say “it doesn’t work correctly”, what do you mean exactly?