Named Entity Recognition
Definition
An NLP task that identifies and classifies named entities in text into predefined categories such as person names, organizations, locations, dates, and monetary values.
Named Entity Recognition (NER) is a fundamental information extraction task that finds and categorizes specific entities mentioned in text. For example, in "Apple CEO Tim Cook announced a new product in Cupertino," NER identifies "Apple" as an organization, "Tim Cook" as a person, and "Cupertino" as a location. Traditional approaches used conditional random fields (CRFs) and handcrafted features, but modern NER systems use transformer-based models fine-tuned on annotated datasets. NER is a critical component in knowledge graph construction, search engines, question answering, and document processing. Domain-specific NER (identifying drug names in medical texts or financial entities in SEC filings) requires specialized training data but provides enormous value for enterprise applications.
Related Terms
Natural Language Processing
A field of AI focused on enabling computers to understand, interpret, generate, and interact with hu...
Sentiment Analysis
An NLP technique that identifies and extracts subjective information from text, determining whether ...
Annotation
The specific labels, tags, or metadata added to data elements during the data labeling process, prov...