Multi-News: a Large-Scale Multi-Document Summarization Dataset and Abstractive Hierarchical Model

TL;DR

Introduced Multi-News dataset and hierarchical abstractive model Hi-MAP, achieving ROUGE-1 35.78 and outperforming baselines.

cs.CL πŸ”΄ Advanced 2019-06-05 53 views
Alexander R. Fabbri Irene Li Tianwei She Suyi Li Dragomir R. Radev
multi-document summarization deep learning hierarchical model MMR large-scale dataset

Key Findings

Methodology

This paper constructs the large-scale Multi-News dataset with 56,216 article-summary pairs from diverse news sources. The proposed Hi-MAP model integrates a pointer-generator network with sentence-level representations and a Maximal Marginal Relevance (MMR) mechanism. The model employs hierarchical sentence embeddings and dynamically adjusts attention weights based on relevance and redundancy scores, effectively fusing multi-source information and reducing repetition. End-to-end training optimizes both content coverage and coherence, demonstrating superior performance on ROUGE metrics and human evaluations.

Key Results

  • On Multi-News, Hi-MAP achieves ROUGE-1 35.78, ROUGE-2 8.90, and ROUGE-L 11.43, outperforming traditional extractive and single-document models by 2-3 ROUGE points, indicating significant enhancement in content coverage and fluency.
  • On DUC 2004, the model attains ROUGE-1 26.83, confirming its generalization capability across datasets. Human assessments show improvements in informativeness, fluency, and non-redundancy compared to baselines.
  • Ablation studies reveal that sentence-level representations and MMR integration are critical for balancing relevance and diversity, especially in multi-source settings.

Significance

This work addresses the scarcity of large-scale multi-document news datasets and introduces a novel hierarchical model that effectively manages multi-source information and redundancy. It advances the state-of-the-art in neural multi-document summarization, offering a valuable resource for future research and practical applications such as automated news summarization, information aggregation, and real-time content filtering. The dataset and model open new avenues for handling complex, multi-source textual data in natural language processing.

Technical Contribution

The paper's key contributions include the creation of the Multi-News dataset, which significantly exceeds previous datasets in size and diversity, and the development of the Hi-MAP model that combines hierarchical sentence embeddings with a sentence-level MMR mechanism within an end-to-end trainable framework. This approach allows dynamic relevance and redundancy control at the sentence level, improving content coverage and reducing repetition, setting a new benchmark for multi-document summarization.

Novelty

This is the first large-scale, multi-source news dataset designed explicitly for neural multi-document summarization, addressing the data scarcity issue. The hierarchical MMR-attention mechanism integrated into a pointer-generator network is a novel contribution, enabling the model to effectively balance relevance and diversity at the sentence level, which has not been explored in prior work.

Limitations

  • The model's performance may degrade with highly redundant or conflicting sources, requiring further refinement of sentence representations and relevance scoring.
  • Training complexity and computational cost are high, limiting real-time deployment. Model scalability to longer documents or more sources remains a challenge.
  • Current evaluation focuses on ROUGE and limited human assessments; broader qualitative analysis and cross-domain testing are needed.

Future Work

Future directions include incorporating multimodal data such as images and videos, optimizing model efficiency, and extending to other domains like legal or medical document summarization. Cross-lingual and cross-domain transfer learning also present promising research avenues to enhance model robustness and applicability.

AI Executive Summary

In an era overwhelmed by information, the ability to generate concise, comprehensive summaries from multiple news sources is increasingly vital. Traditional single-document summarization models have made significant progress, yet they fall short when faced with the complexity of multi-source news content, which often contains overlapping, conflicting, or redundant information. Addressing this challenge, the authors introduce the Multi-News dataset, a large-scale collection of over 56,000 news article-summary pairs from more than 1,500 sources, representing a significant step forward in data availability for multi-document summarization.

Building upon this resource, the paper proposes Hi-MAP, a hierarchical abstractive model that combines a pointer-generator network with sentence-level representations and a Maximal Marginal Relevance (MMR) mechanism. This architecture allows the model to dynamically assess the relevance and redundancy of source sentences, adjusting attention weights accordingly. The hierarchical structure captures both local (word-level) and global (sentence-level) information, enabling the generation of summaries that are both informative and coherent.

Experimental results demonstrate that Hi-MAP outperforms existing baselines, achieving ROUGE-1 scores of 35.78, and human evaluations confirm its superiority in informativeness, fluency, and non-redundancy. The model's ability to effectively fuse diverse sources and control redundancy marks a significant advancement in neural multi-document summarization. Moreover, the model generalizes well to other datasets like DUC 2004, indicating robustness.

This research not only provides a valuable dataset but also introduces innovative modeling techniques that address core challenges in multi-source content synthesis. Its implications extend to real-world applications such as automated news aggregation, real-time information summarization, and intelligent content curation. Future work will explore multimodal integration, domain adaptation, and efficiency improvements, aiming to make multi-document summarization more practical and scalable across various fields.

Deep Dive

Abstract

Automatic generation of summaries from multiple news articles is a valuable tool as the number of online publications grows rapidly. Single document summarization (SDS) systems have benefited from advances in neural encoder-decoder model thanks to the availability of large datasets. However, multi-document summarization (MDS) of news articles has been limited to datasets of a couple of hundred examples. In this paper, we introduce Multi-News, the first large-scale MDS news dataset. Additionally, we propose an end-to-end model which incorporates a traditional extractive summarization model with a standard SDS model and achieves competitive results on MDS datasets. We benchmark several methods on Multi-News and release our data and code in hope that this work will promote advances in summarization in the multi-document setting.

cs.CL