Update spaCy pipeline d009096 verified
Ben Scott commited on
How to use benhartley/en_description_classifier with spaCy:
!pip install https://huggingface.co/benhartley/en_description_classifier/resolve/main/en_description_classifier-any-py3-none-any.whl
# Using spacy.load().
import spacy
nlp = spacy.load("en_description_classifier")
# Importing as module.
import en_description_classifier
nlp = en_description_classifier.load()