Update spaCy pipeline cc45a23
EC2 Default User commited on
How to use spacy/da_core_news_trf with spaCy:
!pip install https://huggingface.co/spacy/da_core_news_trf/resolve/main/da_core_news_trf-any-py3-none-any.whl
# Using spacy.load().
import spacy
nlp = spacy.load("da_core_news_trf")
# Importing as module.
import da_core_news_trf
nlp = da_core_news_trf.load()