The statistical pipeline components like ner provide their labels under .labels:

import spacy
nlp = spacy.load("en_core_web_sm")
nlp.get_pipe("ner").labels
Answer from aab on Stack Overflow
🌐
spaCy
spacy.io › api › entityrecognizer
EntityRecognizer · spaCy API Documentation
If your entities are long and characterized by tokens in their middle, the component will likely not be a good fit for your task. Predictions will be saved to Doc.ents as a tuple. Each label will also be reflected to each underlying token, where it is saved in the Token.ent_type and Token.ent_iob ...
🌐
spaCy
spacy.io › usage › linguistic-features
Linguistic Features · spaCy Usage Documentation
The standard way to access entity annotations is the doc.ents property, which produces a sequence of Span objects. The entity type is accessible either as a hash value or as a string, using the attributes ent.label and ent.label_. The Span object acts as a sequence of tokens, so you can iterate over the entity or index into it.
🌐
Kaggle
kaggle.com › code › curiousprogrammer › entity-extraction-and-classification-using-spacy
Entity Extraction and Classification using SpaCy
Checking your browser before accessing www.kaggle.com · Click here if you are not automatically redirected after 5 seconds
🌐
spaCy
spacy.io › universe › project › video-spacys-ner-model-alt
Named Entity Recognition (NER) using spaCy · spaCy Universe
spaCy is a free open-source library for Natural Language Processing in Python. It features NER, POS tagging, dependency parsing, word vectors and more.
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-named-entity-recognition-ner-using-spacy
Python | Named Entity Recognition (NER) using spaCy - GeeksforGeeks
July 12, 2025 - Optimized performance: spaCy is built for high-speed text processing making it ideal for large-scale NLP tasks. Pre-trained models: It includes various pre-trained NER models that recognize multiple entity types out of the box.
Find elsewhere
🌐
spaCy
spacy.io › usage › training
Training Pipelines & Models · spaCy Usage Documentation
Structured sections. The config is grouped into sections, and nested sections are defined using the . notation. For example, [components.ner] defines the settings for the pipeline’s named entity recognizer.
🌐
Restack
restack.io › p › entity-recognition-answer-spacy-entity-types-list-cat-ai
Spacy Entity Types List | Restackio
To effectively implement Named ... entities within it. The following sections will delve into the specifics of utilizing SpaCy for NER, including the available entity types and how to customize the model for your needs....
🌐
Analytics Vidhya
analyticsvidhya.com › home › named entity recognition (ner) in python with spacy
Named Entity Recognition (NER) in Python with Spacy
May 1, 2025 - It has built-in methods for Named Entity Recognition. Spacy has a fast statistical entity recognition system. We can use spacy very easily for NER tasks. Though often we need to train our own data for business-specific needs, the spacy model general performs well for all types of text data.
🌐
spaCy
spacy.io › api › data-formats
Data formats · spaCy API Documentation
Tokens outside an entity are set ... by the BILUO marker. For example "B-ORG" describes the first token of a multi-token ORG entity and "U-PERSON" a single token representing a PERSON entity....
🌐
qlik-py-tools
nabeel-oz.github.io › qlik-py-tools › docs › NER.html
Named Entity Recognition with spaCy | qlik-py-tools
For specifying the model to be used call the spaCy_Get_Entities_From_Model function, providing a table with the key, text, model name and additional parameters as input. If you introduced new entity types during model retraining, the model will not be able to provide an entity type description.
🌐
MLK
machinelearningknowledge.ai › home › named entity recognition (ner) in spacy library
Named Entity Recognition (NER) in Spacy Library - MLK - Machine Learning Knowledge
August 7, 2021 - In this tutorial, we will be covering how to perform Named Entity Recognition (NER) in Spacy Library along with examples
🌐
GitHub
github.com › explosion › spaCy › issues › 5786
Adding new entity type to NER model · Issue #5786 · explosion/spaCy
July 20, 2020 - I went through the tutorial on adding an 'ANIMAL' entity to spaCy NER here. Hi, I am following the tutorial for adding new entity types to a NER system. Unlike in the tutorial, I have more than 6 sentences. The new type that I want to include to the model is 'Actor'.
Published   Jul 20, 2020
🌐
Analytics Vidhya
analyticsvidhya.com › home › custom named entity recognition using spacy v3
Custom Named Entity Recognition using spaCy v3 - Analytics Vidhya
October 14, 2024 - When we use `nlp` (spacy model object) on a text, spaCy first tokenizes the text to produce a `Doc` object, which is then processed in the next stages in the pipeline. The pipeline used by the default models consists of a tagger stage, a parser stage, and an entity recognizer(ner) stage.
🌐
Machine Learning Plus
machinelearningplus.com › nlp › training-custom-ner-model-in-spacy
Training Custom NER models in SpaCy to auto-detect named entities [Complete Guide]
April 4, 2022 - This feature is extremely useful as it allows you to add new entity types for easier information retrieval. This section explains how to implement it. First , load the pre-existing spacy model you want to use and get the ner pipeline throughget_pipe() method.
🌐
Data Science Duniya
ashutoshtripathi.com › 2020 › 04 › 27 › named-entity-recognition-ner-using-spacy-nlp-part-4
Named Entity Recognition NER using spaCy | NLP | Part 4 – Data Science Duniya
November 16, 2021 - Spacy provides option to add arbitrary classes to entity recognition system and update the model to even include the new examples apart from already defined entities within model. Spacy has the ‘ner’ pipeline component that identifies token spans fitting a predetermined set of named entities.