---
id: information-extraction
title: "Information Extraction: NER, Relation Extraction, and LLM-Powered IE"
schema_type: article
category: ai
language: en
confidence: high
last_verified: "2026-05-24"
created_date: "2026-05-24"
generation_method: ai_assisted
ai_models:
  - claude-4.5-sonnet
derived_from_human_seed: true
conflict_of_interest: none_declared
is_live_document: false
data_period: static
completeness: 0.85
atomic_facts:
  - id: af-information-extraction-1
    statement: >-
      JSON-structured information extraction from scientific text (Nature Communications 2024) demonstrated that fine-tuned LLMs (GPT-3, Llama-2) outperform specialized NER models on joint entity
      recognition and relation extraction — extracting structured materials science data from 10K+ papers at 90%+ precision.
    source_title: Nature Communications (2024) doi:10.1038/s41467-024-45563-x
    source_url: https://www.nature.com/articles/s41467-024-45563-x
    confidence: high
  - id: af-information-extraction-2
    statement: >-
      Multimodal information extraction (MIE) — combining text, images, and layout from documents — achieves 15-20% improvement over text-only IE on tasks like invoice extraction, identity document
      parsing, and scientific figure understanding, driven by LayoutLM and similar document AI models.
    source_title: Multimodal IE Survey (2025)
    source_url: https://arxiv.org/abs/2312.17616
    confidence: high
primary_sources:
  - id: ps-information-extraction-1
    title: Structured information extraction from scientific text with large language models
    type: academic_paper
    year: 2024
    institution: Nature Communications
    url: https://www.nature.com/articles/s41467-024-45563-x
  - id: ps-information-extraction-2
    title: "Large Language Models for Generative Information Extraction: A Survey"
    type: academic_paper
    year: 2024
    institution: arXiv / Awesome-LLM4IE
    url: https://arxiv.org/abs/2312.17616
known_gaps:
  - Information extraction from low-resource languages
  - End-to-end multimodal document understanding at scale
disputed_statements: []
secondary_sources:
  - title: "A Survey of Deep Learning for Information Extraction: Named Entity Recognition, Relation Extraction, and Event Extraction"
    type: survey_paper
    year: 2024
    authors:
      - multiple
    institution: ACM Computing Surveys
    url: https://doi.org/10.1145/3635100
  - title: "BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding"
    type: conference_paper
    year: 2019
    authors:
      - Devlin, Jacob
      - Chang, Ming-Wei
      - Lee, Kenton
      - Toutanova, Kristina
    institution: Google AI / NAACL
    url: https://arxiv.org/abs/1810.04805
  - title: End-to-End Sequence Labeling via Bi-directional LSTM-CNNs-CRF
    type: conference_paper
    year: 2016
    authors:
      - Ma, Xuezhe
      - Hovy, Eduard
    institution: CMU / ACL
    url: https://arxiv.org/abs/1603.01354
  - title: "Large Language Models for Information Extraction: A Survey"
    type: survey_paper
    year: 2024
    authors:
      - multiple
    institution: arXiv / EMNLP
    url: https://arxiv.org/abs/2309.12345
updated: "2026-05-24"
---
## TL;DR
Information Extraction (IE) transforms unstructured text into structured knowledge. Named Entity Recognition identifies people, organizations, and locations; Relation Extraction discovers connections between them. Modern LLMs have fundamentally changed IE — from specialized models to unified generative approaches.

## Core Explanation
IE pipeline: (1) Named Entity Recognition (NER) — locate and classify named entities (Person, Organization, Location, Date); (2) Relation Extraction (RE) — identify semantic relationships between entities (works_at, located_in, founded_by); (3) Event Extraction — detect event triggers and their arguments; (4) Coreference Resolution — link pronouns to entities. Traditional approach uses LSTM-CRF or BERT-based taggers; modern LLM approach uses instruction-following or code-generation formats.

## Detailed Analysis
Generative IE: prompt LLM to output JSON {"entities": [...], "relations": [...]}. Advantages: handle nested/overlapping entities naturally, zero-shot transfer to new entity types, unified architecture. Multimodal IE extends to documents with tables, forms, and images via LayoutLMv3, Donut, and Nougat. OCR+LLM hybrid pipelines (2025) combine traditional OCR with LLM correction. Applications: scientific literature mining, legal document analysis, financial report extraction.

## Further Reading
- SpaCy NER and Transformers
- HuggingFace Token Classification
- Awesome-LLM4IE Papers GitHub
