Rasa X ( Skipping next action Prediction )

Hi, I am getting this error now

2020-07-24 23:45:00 WARNING rasax.community.telemetry - An error occured when trying to send the telemetry event: HTTPSConnectionPool(host=‘api.segment.io’, port=443): Read timed out. (read timeout=2) /home/dipankardas/venv/lib/python3.6/site-packages/rasa/utils/common.py:363: UserWarning: No policy ensemble or domain set. Skipping action prediction.You should set a policy before training a model. More info at Policies 2020-07-24 23:45:12 WARNING rasax.community.api.blueprints.stack - Model training failed. Error: 500, message=‘Internal Server Error’, url=URL(‘http://localhost:5005/conversations/8a046d3e30ca46ed8e42771ffa3d7bbb/predict?include_events=ALL’)

Can you help me to fix this ? I am using Rasa 1.10.0.

Hye @PalGitts. Make sure you have listed all the policies you are using in the config file ( like the form policy or fallback policy ).

My config.yml is,

Configuration for Rasa NLU.

Components

language: en pipeline:

  • name: SpacyNLP
  • name: SpacyTokenizer
  • name: SpacyFeaturizer
  • name: RegexFeaturizer
  • name: CountVectorsFeaturizer analyzer: “char_wb” min_ngram: 1 max_ngram: 4
  • name: CRFEntityExtractor
  • name: DIETClassifier epochs: 100
  • name: EntitySynonymMapper
  • name: ResponseSelector epochs: 100

Configuration for Rasa Core.

Policies

policies:

  • name: MemoizationPolicy
  • name: TEDPolicy max_history: 5 epochs: 100
  • name: MappingPolicy
  • name: FormPolicy

is it MappingPolicy cusing the error ?