Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -99,7 +99,6 @@ dataset_info:
|
|
| 99 |
license: mit
|
| 100 |
task_categories:
|
| 101 |
- text-generation
|
| 102 |
-
- text2text-generation
|
| 103 |
language:
|
| 104 |
- en
|
| 105 |
tags:
|
|
@@ -114,7 +113,7 @@ size_categories:
|
|
| 114 |
|
| 115 |
# ProReviewer Dataset
|
| 116 |
|
| 117 |
-
A version-matched dataset of ICLR paper submissions paired with their initial peer reviews and scores. Each sample contains the initial submission of a paper matched with the reviewers initial ratings (before the discussion phase), enabling research on automated scientific peer review.
|
| 118 |
|
| 119 |
## Dataset Description
|
| 120 |
|
|
@@ -158,7 +157,25 @@ Each review contains:
|
|
| 158 |
|
| 159 |
## Usage
|
| 160 |
|
|
|
|
|
|
|
| 161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
|
| 163 |
## Version Matching
|
| 164 |
|
|
@@ -180,7 +197,14 @@ Papers and reviews were collected from [OpenReview](https://openreview.net/) for
|
|
| 180 |
|
| 181 |
## Citation
|
| 182 |
|
| 183 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 184 |
|
| 185 |
## License
|
| 186 |
|
|
|
|
| 99 |
license: mit
|
| 100 |
task_categories:
|
| 101 |
- text-generation
|
|
|
|
| 102 |
language:
|
| 103 |
- en
|
| 104 |
tags:
|
|
|
|
| 113 |
|
| 114 |
# ProReviewer Dataset
|
| 115 |
|
| 116 |
+
A version-matched dataset of ICLR paper submissions paired with their initial peer reviews and scores. Each sample contains the initial submission of a paper matched with the reviewers' initial ratings (before the discussion phase), enabling research on automated scientific peer review.
|
| 117 |
|
| 118 |
## Dataset Description
|
| 119 |
|
|
|
|
| 157 |
|
| 158 |
## Usage
|
| 159 |
|
| 160 |
+
```python
|
| 161 |
+
from datasets import load_dataset
|
| 162 |
|
| 163 |
+
ds = load_dataset("UKPLab/ProReviewer-Dataset")
|
| 164 |
+
|
| 165 |
+
# Access a training sample
|
| 166 |
+
paper = ds["train"][0]
|
| 167 |
+
print(paper["title"])
|
| 168 |
+
print(f"Avg initial rating: {paper['scores']['rating_avg']}")
|
| 169 |
+
print(f"Decision: {paper['decision']['decision']}")
|
| 170 |
+
print(f"Number of reviews: {len(paper['reviews'])}")
|
| 171 |
+
|
| 172 |
+
# Read paper content (initial submission)
|
| 173 |
+
content = paper["markdown"]["content"]
|
| 174 |
+
|
| 175 |
+
# Access individual reviews
|
| 176 |
+
for review in paper["reviews"]:
|
| 177 |
+
print(f"Initial rating: {review['initial_rating']}, Confidence: {review['confidence']}")
|
| 178 |
+
```
|
| 179 |
|
| 180 |
## Version Matching
|
| 181 |
|
|
|
|
| 197 |
|
| 198 |
## Citation
|
| 199 |
|
| 200 |
+
```bibtex
|
| 201 |
+
@article{fang2026passive,
|
| 202 |
+
title={From Passive Generation to Investigation: A Proactive Scientific Peer Review Agent},
|
| 203 |
+
author={Fang, Haishuo and Feng, Yue and Gurevych, Iryna},
|
| 204 |
+
journal={arXiv preprint arXiv:2606.13349},
|
| 205 |
+
year={2026}
|
| 206 |
+
}
|
| 207 |
+
```
|
| 208 |
|
| 209 |
## License
|
| 210 |
|