Dataset Viewer
Auto-converted to Parquet Duplicate
document
listlengths
1
10
summary
stringlengths
29
806
[ "Rodrigo Duterte, the new president of the Philippines, gives good copy. Here’s a quote from his final election rally: “Forget the laws on human rights. If I make it to the presidential palace, I will do just what I did as mayor. You drug pushers, hold-up men and do-nothings, you better go out. Because I’d kill you...
The death toll in Rodrigo Duterte's war on drugs reaches 1,900 people killed.
[ "(CNN) More than 80 ISIS targets were attacked in the first hours of \"Operation Euphrates Shield\" early Wednesday, officials say, as Turkish armor and warplanes targeted a key ISIS-held town across its border with Syria.\n\nJarablus is one of the few towns in northern Syria that ISIS still controls and is a criti...
Turkey sends more tanks into northern Syria to continue its offensive against Islamic State of Iraq and the Levant and Kurdish People's Protection Units (YPG).
[ "", "Jiangxi Copper Co Ltd said on Wednesday it has set up a Cayman Islands-based fund that will buy mining projects as the Chinese state-owned copper producer sets its eyes on potential bargains as the commodities cycle bottoms.\n\nAs China’s largest copper producer reported a 37.9 percent drop in profits due to...
Miners in the Philippines criticize the government after a crackdown on mining closed more nickel and copper mines.
[ "Italy earthquake: Death toll hits 250 as survivors recount narrow escape\n\nUpdated\n\nThe death toll from the powerful earthquake in central Italy has reached 250, amid fears many more bodies remain buried in the rubble of devastated mountain villages.\n\nAs rescuers sifted through collapsed masonry in the search...
The search continues for survivors in central Italy with the death toll now 241. An aftershock of 4.7 MMS hits further east in the province near Norcia.
[ "Toronto police confirm there is a link between the three deaths involving a crossbow in east Toronto and a suspicious package found in the downtown area of the city. No further details were provided.\n\nEarlier Thursday, police revealed that three people are dead, all of whom were found with apparent crossbow inju...
Three people are killed and two are injured after a crossbow attack in Scarborough, Toronto. A suspicious package was also found in another linked event.
[ "BRASILIA (Reuters) - Brazil’s Senate began the trial of suspended President Dilma Rousseff on Thursday after a lengthy impeachment process that has paralyzed the politics of Latin America’s largest nation and is expected to culminate in her removal from office next week.\n\nThe secretary of the Federal Senate read...
Brazil's Federal Senate begins the impeachment trial of suspended President Dilma Rousseff.
["An attack with an explosives-laden truck on a police checkpoint in south-east Turkey has killed at(...TRUNCATED)
"Eight Turkish police officers are killed and 40 are injured in a bombing at a police checkpoint in (...TRUNCATED)
["For four long years the Damascus suburb of Daraya endured siege, bombardment and starvation at the(...TRUNCATED)
"Following a ceasefire agreement with the government, Syrian rebels begin evacuating the war-torn su(...TRUNCATED)
["GARIPCE, Turkey (Reuters) - Turkey opened one of the world’s biggest suspension bridges on Frida(...TRUNCATED)
"Turkey opens the Yavuz Sultan Selim Bridge in Istanbul, one of the world's biggest suspension bridg(...TRUNCATED)
["Six Indonesian provinces have declared states of emergency as forest fires blanketed a swath of So(...TRUNCATED)
Fires in Indonesia burn and blow smoke into Singapore, engulfing the city-state into darkness.
End of preview. Expand in Data Studio

WCEP-10 (Parquet Version)

This repository contains the WCEP-10 dataset in Parquet format. It is a processed version of the dataset originally hosted at ccdv/WCEP-10, which was popularized by the PRIMERA paper.

The dataset is designed for Multi-Document Summarization (MDS) and consists of short, concise summaries derived from the Wikipedia Current Events Portal (WCEP), paired with a cluster of related news articles.

Dataset Summary

Dataset Structure

The dataset is strictly formatted with two columns, making it ready for immediate use with standard Hugging Face training scripts.

Column Type Description
document string The input text. Contains the concatenated content of the source articles related to the event.
summary string The target summary. A concise, human-written summary of the event from the Wikipedia Current Events Portal.

Data Splits

Split Number of Instances
Train 8,158
Validation 1,020
Test 1,022

Usage

You can load this dataset directly using the Hugging Face datasets library:

from datasets import load_dataset

dataset = load_dataset("Awesome075/wcep-10_parquet")

print(dataset)
# Output:
# DatasetDict({
#     train: Dataset({
#         features: ['document', 'summary'],
#         num_rows: 8158
#     }),
#     validation: Dataset({
#         features: ['document', 'summary'],
#         num_rows: 1020
#     }),
#     test: Dataset({
#         features: ['document', 'summary'],
#         num_rows: 1022
#     })
# })

Citation

If you use this dataset, please cite both the original WCEP paper and the PRIMERA paper which introduced this specific 10-document subset version.

Original WCEP Dataset:

@inproceedings{WCEP,
    title = "A Large-Scale Multi-Document Summarization Dataset from the Wikipedia Current Events Portal",
    author = "Gholipour Ghalandari, Demian  and
      Hokamp, Chris  and
      Pham, Nghia The  and
      Glover, John  and
      Ifrim, Georgiana",
    booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
    month = jul,
    year = "2020",
    address = "Online",
    publisher = "Association for Computational Linguistics",
    url = "https://www.aclweb.org/anthology/2020.acl-main.120",
    pages = "1302--1308",
}

WCEP-10 / PRIMERA:

@inproceedings{PRIMERA,
  title={PRIMERA: Pyramid-based masked sentence pre-training for multi-document summarization},
  author={Xiao, Wen and Beltagy, Iz and Carenini, Giuseppe and Cohan, Arman},
  booktitle={Proceedings of the 60th annual meeting of the association for computational linguistics (Volume 1: Long Papers)},
  pages={5245--5263},
  year={2022}
}
Downloads last month
57

Papers for Awesome075/WCEP-10_parquet