How to use spaCy models in DSS

Greetings fellow Linguists,

To use spaCy models in DSS, you can start by installing it like any other Python package in DSS: by creating a code environment and adding "spacy" to your package requirements. To do so, follow this documentation.

However, some functionalities of spaCy, such as language-specific tokenizers, rely on models that are not bundled in the library itself. To use these models, you need an additional download step. Typically, this can create issues on shared DSS nodes where users do not have write access to shared locations on the server (see User Isolation Framework).

To overcome this challenge, you can use spaCy dedicated pip delivery mechanism. For instance, in your code-env requirement setting, add https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.5/en_core_web_sm-2.2.....

4lBXoOawAVZpzc-IZwZn6erL9QbDMlpNBA.png

After adding this link, rebuild your code environment. To test that it works correctly, run the following code in a notebook using this code environment.

 

 

import spacy
nlp = spacy.load("en_core_web_sm")

 

 

Voila! You can now use spaCy along with its dedicated English language model. 

Happy natural language processing!

Comments
Angelo
Level 3

Thank you this has saved me so much time. I was trying to download the package using `!python -m spacy download en_core_web_sm` from a DSS notebook but run into all sorts of issues with the environments:

- native/built_in python environment version was 2.7 while the environment i was using within DSS was 3.6

- Within the DSS env I had installed spacy but when I was running the command above, it was invoking the python env outside dss so it couldn't find spacy.

specifying the model package to be downloaded and installed through the pip instructions worked!

 

 

Share:

Labels

?
Labels (4)
Version history
Publication date:
01-05-2022 11:55 PM
Version history
Last update:
‎12-16-2020 11:04 AM
Updated by: