Hi all,
I’m using the configuration from the RASA doc and get this error:
InvalidConfigException: Can't load class for name 'ConveRTTokenizer'. Please make sure to provide a valid name or module path and to register it using the '@DefaultV1Recipe.register' decorator.
My config.yml looks like this:
pipeline:
- name: ConveRTTokenizer
- name: ConveRTFeaturizer
alias: "convert"
- name: RegexFeaturizer
alias: "regex"
- name: LexicalSyntacticFeaturizer
alias: "lexical-syntactic"
- name: CountVectorsFeaturizer
alias: "cvf-word"
- name: CountVectorsFeaturizer
alias: "cvf-char"
analyzer: "char_wb"
min_ngram: 1
max_ngram: 4
- name: DIETClassifier
epochs: 300
- name: EntitySynonymMapper
- name: ResponseSelector
retrieval_intent: faq
featurizers: ["convert", "cvf-word"]
epochs: 100
constrain_similarities: true
- name: ResponseSelector
retrieval_intent: chitchat
featurizers: ["convert", "cvf-word"]
epochs: 100
constrain_similarities: true
- name: ResponseSelector
retrieval_intent: booking
featurizers: ["convert", "cvf-word"]
epochs: 100
constrain_similarities: true
- name: ResponseSelector
retrieval_intent: refund
featurizers: ["convert", "cvf-word"]
epochs: 100
constrain_similarities: true
- name: ResponseSelector
retrieval_intent: planning
featurizers: ["convert", "cvf-word"]
epochs: 100
constrain_similarities: true
- name: FallbackClassifier
threshold: 0.3
Any idea why this is happening? Many thanks!