DRONE_OP
DRONE_OP

Reputation: 31

Google colab issue

I tried to do this:

!python -m spacy download en_trf_bertbaseuncased_lg

Got this message:

2021-06-29 22:50:24.331283: I tensorflow/stream_executor/platform/default/dso_loader.cc:53] Successfully opened dynamic library libcudart.so.11.0

✘ No compatible package found for 'en_trf_bertbaseuncased_lg' (spaCy v3.0.6)

Upvotes: 3

Views: 2360

Answers (1)

Chiel
Chiel

Reputation: 2179

You are probably using the wrong name. A v2 version while having SpaCy v3 installed. Try this:

!python -m spacy download en_core_web_trf

Source:
https://github.com/explosion/spaCy/discussions/8243

Upvotes: 3

Related Questions