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