Earlier my config.yml was:
language: en
pipeline: supervised_embeddings
policies:
- name: MemoizationPolicy
- name: KerasPolicy
- name: MappingPolicy
But then I had to configure stopwords, so now my file is:
language: en
pipeline:
- name: "WhitespaceTokenizer"
- name: "RegexFeaturizer"
- name: "EmbeddingIntentClassifier"
- name: "CRFEntityExtractor"
- name: "EntitySynonymMapper"
- name: "CountVectorsFeaturizer"
stop_words: {'I', 'in', 'the'}
policies:
- name: MemoizationPolicy
- name: KerasPolicy
- name: MappingPolicy
But I’m getting below error on executing rasa train: ValueError: Cannot feed value of shape (64,) for Tensor ‘a:0’, which has shape ‘(?, 417)’
How to resolve this, Also is the 2nd config.yml equilvalent to supervised_embeddings other than stopwords change?