Instructions to use spacy/en_core_web_lg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use spacy/en_core_web_lg with spaCy:
!pip install https://huggingface.co/spacy/en_core_web_lg/resolve/main/en_core_web_lg-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("en_core_web_lg") # Importing as module. import en_core_web_lg nlp = en_core_web_lg.load() - Notebooks
- Google Colab
- Kaggle
how to perform a Custom Named Entity Recognition using custom dataset
#3
by MohamedZouabi - opened
how to perform a Custom Named Entity Recognition using custom dataset
See spaCy docs on training. WJB Mattingly also has a great How to train a spaCy NER Model tutorial/videos. Hope this helps!
wesslen changed discussion status to closed