June 2018
Beginner to intermediate
306 pages
7h 42m
English
As of v1.7.0, models for spaCy can be installed as Python packages. This means that they're a component of your application, just like any other module. Models can be installed from a download URL or a local directory, manually or via pip.
The easiest way to download and use these models is using spaCy's download command.
# out-of-the-box: download best-matching default modelspacy download en # english modelspacy download de # german modelspacy download es # spanish modelspacy download fr # french modelspacy download xx # multi-language model# download best-matching version of specific model for your spaCy installationspacy download en_core_web_sm# download exact model version (doesn't create shortcut link)spacy ...
Read now
Unlock full access