Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Tags:
License:
oaimli commited on
Commit
c9db2d6
1 Parent(s): 71d8df0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -14,10 +14,10 @@ This is PeerSum, a multi-document summarization dataset in the peer-review domai
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_all = load_dataset('oaimli/PeerSum', split='all')
18
- # peersum_train = peersum_all.filter(lambda s: s['label'] == 'train')
19
- # peersum_val = peersum_all.filter(lambda s: s['label'] == 'val')
20
- # peersum_test = peersum_all.filter(lambda s: s['label'] == 'test')
21
  ```
22
 
23
  You can also download the raw data from [Google Drive](https://drive.google.com/drive/folders/1SGYvxY1vOZF2MpDn3B-apdWHCIfpN2uB?usp=sharing). The raw data comprises more information and it can be used for other analysis for peer reviews.
 
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_all = load_dataset('oaimli/PeerSum', split='all')
18
+ peersum_train = peersum_all.filter(lambda s: s['label'] == 'train')
19
+ peersum_val = peersum_all.filter(lambda s: s['label'] == 'val')
20
+ peersum_test = peersum_all.filter(lambda s: s['label'] == 'test')
21
  ```
22
 
23
  You can also download the raw data from [Google Drive](https://drive.google.com/drive/folders/1SGYvxY1vOZF2MpDn3B-apdWHCIfpN2uB?usp=sharing). The raw data comprises more information and it can be used for other analysis for peer reviews.