spaCy How to use Sefaria/he_subref_ner with spaCy:
!pip install https://huggingface.co/Sefaria/he_subref_ner/resolve/main/he_subref_ner-any-py3-none-any.whl
# Using spacy.load().
import spacy
nlp = spacy.load("he_subref_ner")
# Importing as module.
import he_subref_ner
nlp = he_subref_ner.load()