Zubnet AIसीखेंWiki › Named Entity Recognition
Using AI

Named Entity Recognition

NER, Entity Extraction
Text में named entities को identify और categorize करना — लोग, organizations, locations, dates, monetary amounts, और दूसरे proper nouns। “Apple ने मंगलवार को Munich में $3B investment announce किया” में, NER Apple (Organization), $3B (Money), Munich (Location), और Tuesday (Date) को identify करता है। ये एक foundational NLP task है जो information extraction, search, और knowledge graph construction में use होती है।

यह क्यों matter करता है

NER unstructured text से structured information extraction की backbone है। हर search engine, news aggregator, और intelligence system NER use करता है ये समझने के लिए कि एक document किस बारे में है। ये text से knowledge graphs बनाने का पहला step भी है — आप उन entities के बीच relationships नहीं बना सकते जिन्हें आपने identify नहीं किया।

Deep Dive

NER is typically framed as a sequence labeling task: each token gets a label like B-PER (beginning of person name), I-PER (inside person name), O (not an entity). The BIO tagging scheme handles multi-word entities: "New" gets B-LOC, "York" gets I-LOC. Fine-tuned BERT models are the standard for high-accuracy NER, though spaCy's built-in NER is popular for quick, good-enough extraction.

Domain-Specific NER

General NER models handle common entity types (person, org, location, date). Domain-specific applications need custom types: medical NER extracts drugs, symptoms, and dosages. Legal NER extracts case numbers, statutes, and parties. Financial NER extracts ticker symbols, financial metrics, and regulatory references. These require domain-specific training data, which is expensive to annotate but dramatically improves extraction quality in specialized contexts.

NER with LLMs

LLMs can perform NER through prompting: "Extract all person names and organizations from this text and return as JSON." This is slower and more expensive than dedicated NER models but handles novel entity types without training data and works across languages out of the box. For production systems processing millions of documents, dedicated models win on cost. For ad-hoc extraction or uncommon entity types, LLMs win on flexibility.

संबंधित अवधारणाएँ

← सभी Terms
ESC