InvalidModelError: Please confirm that en_core_wb_md is an available spaCy model

When attempting to add spacy to my pipeline in the same way listed as Components and then training my model with rasa train, I run into the following error:

I have definitely installed spacy on my environment and when I do python -m spacy validate, it shows the model has successfully loaded: image

This is all my config.yaml file has:

language: en

pipeline:

  • name: “SpacyNLP”

    model: “en_core_wb_md”

    case_sensitive: False

And this is my version of rasa: image

Any help would be appreciated

Can you confirm that your pipeline has en_core_web_md instead of en_core_wb_md? It might just be a typo.

1 Like