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