Multi-Document Summarization
Also known as: MDS, Çok Belgeli Özetleme (Multi-Document Summarization), multi-source summarization
Multi-document summarization (MDS) is a natural-language-processing task that condenses a cluster of related documents into a single comprehensive, coherent, and non-redundant summary. Formally described by Erkan and Radev (2004) through the LexRank algorithm, MDS is used in news cluster analysis, systematic literature reviews, and research synthesis to give readers a unified view of information spread across multiple sources.
Read the full method
Sign in with a free account to read this section.
Method map
The neighbourhood of related methods — select a node to explore.
When to use it
Multi-document summarization is appropriate when you have a cluster of at least five topically related documents and need a unified, non-redundant account of their content. Typical settings include news cluster analysis (many articles on the same event), systematic literature reviews (synthesising findings across research papers), and knowledge base construction. The method requires a related document set — it is not designed for a single isolated document — and the chosen algorithm (extractive or abstractive) must match the language and domain of the corpus.
Strengths & limitations
- Produces a single, unified summary from multiple related sources, saving analysts from reading every document individually.
- Graph-based extractive approaches such as LexRank operate without labelled training data, making them applicable to low-resource domains.
- Transformer-based abstractive approaches can generate fluent, paraphrased summaries that go beyond simple sentence selection.
- Scales naturally to large document clusters common in news and scientific literature.
- Abstractive methods require substantial computational resources and large pretrained language models.
- Automatic evaluation metrics such as ROUGE correlate imperfectly with human judgements of quality.
- Cross-document coreference resolution — tracking the same entity across documents — remains an unsolved challenge and can introduce inconsistencies.
- Conflicting or contradictory information across documents is difficult to handle and may be silently lost or misrepresented in the summary.
Frequently asked
What is the difference between extractive and abstractive multi-document summarization?
Extractive methods select and concatenate the most important sentences directly from the source documents, preserving the original wording. LexRank is a prominent example. Abstractive methods generate new text that paraphrases and fuses content from multiple sources, producing more fluent summaries but requiring pretrained language models and greater computational resources.
How many documents do I need for multi-document summarization?
The method is designed for clusters of related documents — at least five is a practical minimum. Below that threshold, a standard single-document summariser is more appropriate. There is no strict upper limit, but very large clusters may require hierarchical or incremental strategies to manage computational cost.
How is summary quality measured?
The standard automatic metric is ROUGE, which counts n-gram overlaps between the generated summary and one or more human reference summaries. However, ROUGE correlates imperfectly with human judgements of coherence and informativeness, so human evaluation remains the gold standard in research and production contexts.
What happens when the source documents contradict each other?
Contradiction handling is one of the hardest open problems in MDS. Most off-the-shelf methods do not explicitly detect conflicts — they may silently favour one perspective or produce an internally inconsistent summary. For domains where contradictions matter (e.g., scientific or legal text), explicit contradiction detection should be added as a preprocessing step before summarisation.
Sources
- Erkan, G. & Radev, D.R. (2004). LexRank: Graph-Based Lexical Centrality as Salience in Text Summarization. Journal of Artificial Intelligence Research, 22, 457-479. link ↗
- Liu, P.J. et al. (2018). Generating Wikipedia by Summarizing Long Sequences. International Conference on Learning Representations (ICLR). link ↗
How to cite this page
ScholarGate. (2026, June 1). Multi-Document Summarization. ScholarGate. https://scholargate.app/en/text-mining/multi-document-summarization
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- BERT EmbeddingsText mining↔ compare
- Sentiment AnalysisText mining↔ compare
- Text ClassificationText mining↔ compare
- TF-IDFText mining↔ compare
- Topic ModelingDeep learning↔ compare