Extractive summarization operates by scoring and ranking sentences within a source document based on their centrality, relevance, and informativeness. Unlike abstractive methods, it guarantees factual consistency by preserving the exact original wording, making it a critical tool in legal contexts where altering a single word can change a binding obligation or judicial holding. Algorithms such as LexRank and TextRank build graph-based representations of sentence similarity, selecting passages with the highest eigenvector centrality.
Glossary
Extractive Summarization

What is Extractive Summarization?
Extractive summarization is a text condensation technique that identifies and verbatim copies the most salient sentences from a source document to form a summary, without generating any new text or paraphrasing the original content.
The technique relies on salience scoring to weight sentences by features like term frequency, position in the document, and overlap with the title or key legal queries. While extractive summaries avoid the hallucination rate risks inherent in generative models, they can suffer from redundancy and choppy coherence. Advanced implementations combine extractive selection with coreference resolution to ensure that selected sentences containing pronouns remain interpretable when isolated from their original context.
Key Features of Extractive Summarization
Extractive summarization identifies and verbatim copies the most salient sentences from a source document. Unlike abstractive methods, it does not generate new text, ensuring high factual consistency and source attribution by design.
Salience Scoring
The algorithmic backbone of extraction. Each sentence is assigned a numerical weight based on its importance to the central topic.
- TF-IDF Vectors: Scores words by frequency, penalizing common terms.
- Graph Centrality: Algorithms like LexRank treat sentences as nodes; centrality in the similarity graph determines importance.
- Positional Bias: Sentences near the beginning of legal documents often receive higher initial weights due to the structured nature of briefs and opinions.
Maximum Marginal Relevance (MMR)
A greedy selection algorithm that builds a summary by balancing two competing objectives.
- Relevance: How well a candidate sentence answers a query or matches the document's main theme.
- Novelty: How different the candidate is from sentences already selected.
- The Lambda Parameter: A tunable weight (0 to 1) that controls the trade-off. A high lambda favors relevance; a low lambda aggressively penalizes redundancy, which is critical for multi-document legal review.
Coreference Resolution
A critical pre-processing step before salience scoring. This NLP task identifies all expressions that refer to the same entity.
- Pronoun Resolution: Mapping 'he,' 'she,' or 'it' back to the named party or object.
- Entity Linking: Connecting 'the plaintiff,' 'Acme Corp,' and 'the appellant' as a single node.
- Impact: Without this step, a key sentence starting with 'The Court held...' might be scored low because it lacks explicit entity keywords, causing the summarizer to miss the central holding.
Redundancy Filtering
The process of ensuring the final extracted summary does not contain repetitive information, a common failure mode in legal texts where judges often restate facts.
- Cosine Similarity Thresholds: Candidate sentences with high vector similarity to already-selected sentences are discarded.
- N-gram Overlap: A simpler, high-recall filter that checks for exact phrase repetition.
- Subsumption Detection: Identifies when one sentence fully contains the information of another, keeping only the more comprehensive statement.
Source Attribution
The technique of explicitly linking each extracted sentence back to its precise location in the source document.
- Citation Anchors: Each summary sentence retains a pointer to the original paragraph, page, or line number.
- Provenance Tracking: Essential for legal workflows where an attorney must instantly verify the context of an extracted quote.
- Auditability: Unlike abstractive summaries, extractive outputs allow for deterministic, byte-for-byte verification against the source, eliminating hallucination risks.
Query-Focused Extraction
A specialized mode where the summarizer selects sentences that specifically answer a user's natural language question rather than providing a generic overview.
- Relevance Modeling: Uses semantic similarity between the query embedding and sentence embeddings.
- Legal Application: A litigator can query 'What was the standard of review applied?' and receive only the extracted sentences discussing the standard of review, ignoring procedural history.
- Contrast with Generic Summarization: Generic extraction aims for overall coverage; query-focused extraction optimizes for precision and recall against a specific information need.
Frequently Asked Questions
Clear answers to common questions about extractive summarization, the technique of identifying and verbatim copying the most salient sentences from source documents to form concise summaries without generating new text.
Extractive summarization is a technique that identifies and verbatim copies the most salient sentences from a source document to form a summary without generating new text. Unlike abstractive methods that paraphrase or rephrase content, extractive approaches preserve the original wording exactly as it appears in the source. The process typically involves three stages: first, the document is segmented into individual sentences or passages; second, each unit is assigned a salience score based on features such as term frequency, position in the document, presence of cue phrases, or semantic similarity to the document's central theme; finally, the highest-scoring sentences are selected and concatenated—often with redundancy penalties applied via algorithms like Maximum Marginal Relevance (MMR) to avoid repetition. Graph-based methods like LexRank model sentences as nodes in a similarity graph and compute importance using eigenvector centrality, effectively identifying sentences that are most representative of the document's overall content.
Extractive vs. Abstractive Summarization
A technical comparison of the two primary algorithmic approaches to automated legal text condensation, highlighting their mechanisms, outputs, and risk profiles.
| Feature | Extractive | Abstractive | Hybrid |
|---|---|---|---|
Core Mechanism | Selects and copies verbatim sentences from source | Generates new, paraphrased sentences | Extracts key sentences then paraphrases or compresses them |
Output Origin | Exact source text | Novel text generation | Mixed source and generated text |
Grammatical Coherence | Can be disjointed or choppy | High fluency and cohesion | High fluency with anchored facts |
Factual Hallucination Risk | 0% (verbatim copy) | 2-15% depending on model | 1-5% depending on fusion method |
Handling of Coreference | Preserves original pronouns, may lose antecedents | Resolves and normalizes entities | Resolves entities within extracted context |
Novel Phrasing Capability | |||
Typical ROUGE-1 F1 Score | 0.45-0.55 | 0.38-0.48 | 0.42-0.52 |
Legal Citation Integrity | Perfect (verbatim) | Requires source attribution verification | High if grounded in extractive anchors |
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Extractive summarization is a foundational technique in legal NLP. The following concepts define its evaluation, algorithmic implementation, and relationship to the broader summarization landscape.
LexRank
A graph-based extractive summarization algorithm that computes sentence importance using eigenvector centrality. It models a document as a similarity graph where nodes are sentences and edges are weighted by TF-IDF cosine similarity. The algorithm applies a stochastic PageRank-like process to identify the most central sentences, which are then extracted verbatim to form the summary. This method is particularly effective for multi-document legal summarization because it identifies sentences that are both salient and representative of the corpus's consensus view.
Maximum Marginal Relevance (MMR)
A query-focused extractive method that selects passages by balancing two competing objectives:
- Relevance: Maximizing similarity to the user's query or information need
- Novelty: Minimizing redundancy with sentences already selected
The algorithm uses a tunable lambda parameter to control the trade-off. In legal applications, MMR is used to construct summaries that answer specific research questions while avoiding repetitive extraction of the same legal principle stated across multiple citations.
Salience Scoring
The process of assigning a numerical weight to each sentence or passage based on its importance to the document's central topic. Features used for scoring include:
- Positional heuristics: Sentences in introductions and conclusions often carry more weight
- Term frequency statistics: TF-IDF or BM25 scores
- Entity density: Concentration of named legal entities (parties, courts, statutes)
- Cue phrases: Domain-specific signposts like 'the court held that' or 'we conclude'
These scores form the ranking basis for extractive selection.
ROUGE (Recall-Oriented Understudy for Gisting Evaluation)
The standard automatic evaluation metric suite for summarization. ROUGE measures the overlap of n-grams between a candidate summary and one or more human-written reference summaries. Key variants include:
- ROUGE-1: Unigram overlap
- ROUGE-2: Bigram overlap, capturing phrase-level fluency
- ROUGE-L: Longest common subsequence, capturing sentence structure
Because extractive summaries copy source text verbatim, they often achieve high ROUGE scores against references that also quote the source, making this metric particularly relevant for extractive system evaluation.
Source Attribution
The technique of explicitly linking each factual statement in a summary back to its precise provenance in the source document. For extractive summaries, this is inherent—every sentence is a direct quotation with a known location. This property makes extractive methods highly valued in legal contexts where citation integrity is paramount. Systems can annotate extracted sentences with paragraph numbers, page lines, or document section identifiers, enabling attorneys to instantly verify the context of any summarized statement.
Chain-of-Density
An iterative prompting technique that generates increasingly dense summaries without increasing overall length. Starting from an initial sparse summary, the model iteratively identifies and fuses salient entities and relationships. While primarily an abstractive method, the technique's focus on entity density and information compression provides a useful framework for evaluating whether an extractive summary has captured all critical legal entities—parties, dates, statutes, and holdings—within its verbatim selections.

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us