Error loading prodigy model

Hi, I'm trying to load a saved prodigy model using the command:
import spacy
nlp = spacy.load({model_path})

but receiving the following error:

Model is trained and loaded in the same environment.
Some info about prodigy and spacy versions installed:


Model is trained using the following command:
python -m prodigy train {model storage location} --ner {dataset_name}--eval-split 0.2 --config config.cfg --base-model en_core_web_trf --gpu-id 0

What could be the reason for the error on top and where am I going wrong in this process?

Hi! It looks like you're hitting the same problem described in this thread. See here for a workaround:

Thank you! Will check out the dev version.