Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
oaimli commited on
Commit
78a8583
1 Parent(s): 2117d40

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -3
README.md CHANGED
@@ -9,7 +9,14 @@ size_categories:
9
  - 10K<n<100K
10
  ---
11
 
12
- This is PeerSum, a multi-document summarization dataset in the peer-review domain.
13
- More details can be found in the paper accepted at EMNLP 2023, [Summarizing Multiple Documents with Conversational Structure for Meta-review Generation](https://arxiv.org/abs/2305.01498).
14
 
15
- The original code and datasets are public on [GitHub](https://github.com/oaimli/PeerSum).
 
 
 
 
 
 
 
 
 
9
  - 10K<n<100K
10
  ---
11
 
12
+ This is PeerSum, a multi-document summarization dataset in the peer-review domain. More details can be found in the paper accepted at EMNLP 2023, [Summarizing Multiple Documents with Conversational Structure for Meta-review Generation](https://arxiv.org/abs/2305.01498). The original code and datasets are public on [GitHub](https://github.com/oaimli/PeerSum).
 
13
 
14
+ Please use the following code to download the dataset with the datasets library from Huggingface.
15
+ ```python
16
+ from datasets import load_dataset
17
+ peersum_train = load_dataset("oaimli/PeerSum", split="train")
18
+ peersum_validation = load_dataset("oaimli/PeerSum", split="validation")
19
+ peersum_test = load_dataset("oaimli/PeerSum", split="test")
20
+ ```
21
+
22
+ You can also download the raw data which comprises more information from [Google Drive](https://drive.google.com/drive/folders/1SGYvxY1vOZF2MpDn3B-apdWHCIfpN2uB?usp=sharing).