Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,29 +1,60 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
num_bytes: 212262589.24
|
| 23 |
-
num_examples: 1135
|
| 24 |
-
download_size: 187509505
|
| 25 |
-
dataset_size: 212262589.24
|
| 26 |
---
|
| 27 |
-
# Dataset Card for "PaperGuard"
|
| 28 |
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pretty_name: PaperGuard
|
| 4 |
+
task_categories:
|
| 5 |
+
- image-text-to-text
|
| 6 |
+
- text-generation
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
size_categories:
|
| 10 |
+
- 1K<n<10K
|
| 11 |
+
tags:
|
| 12 |
+
- peer-review
|
| 13 |
+
- adversarial-robustness
|
| 14 |
+
- prompt-injection
|
| 15 |
+
- multimodal
|
| 16 |
+
- benchmark
|
| 17 |
+
configs:
|
| 18 |
+
- config_name: default
|
| 19 |
+
data_files:
|
| 20 |
+
- split: test
|
| 21 |
+
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
---
|
|
|
|
| 23 |
|
| 24 |
+
# PaperGuard
|
| 25 |
+
|
| 26 |
+
A benchmark of academic papers (text + key figures) for evaluating the robustness of
|
| 27 |
+
multimodal AI peer-review systems.
|
| 28 |
+
|
| 29 |
+
## Schema (single `test` split)
|
| 30 |
+
|
| 31 |
+
| column | type | description |
|
| 32 |
+
|---|---|---|
|
| 33 |
+
| `paper_id` | string | paper identifier (e.g. `502`, `ICLR2020_10`, `1-26`) |
|
| 34 |
+
| `source` | string | one of `iclr_2017`, `AgentReview`, `F1000` |
|
| 35 |
+
| `title` | string | paper title (may be null) |
|
| 36 |
+
| `abstract` | string | abstract text |
|
| 37 |
+
| `num_figures` | int | number of figures present (0–2) |
|
| 38 |
+
| `paper_json` | string | the full original parsed-paper JSON (`{"name", "metadata"}`), verbatim |
|
| 39 |
+
| `method_figure` | image | the method figure (`<id>-1.png`), or null |
|
| 40 |
+
| `result_figure` | image | the result figure (`<id>-2.png`), or null |
|
| 41 |
+
|
| 42 |
+
## Usage
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from datasets import load_dataset
|
| 46 |
+
|
| 47 |
+
ds = load_dataset("rellabear/PaperGuard", split="test")
|
| 48 |
+
row = ds[0]
|
| 49 |
+
fig = row["method_figure"] # PIL.Image or None
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## License & Attribution
|
| 53 |
+
|
| 54 |
+
Released for **non-commercial research** under **CC-BY-NC-4.0**. Please cite the original sources:
|
| 55 |
+
|
| 56 |
+
- **F1000** — via [NLPeer](https://github.com/UKPLab/nlpeer) (Dycke et al., ACL 2023); F1000Research content is CC-BY.
|
| 57 |
+
- **iclr_2017** — via [PeerRead](https://github.com/allenai/PeerRead) (Kang et al., NAACL 2018).
|
| 58 |
+
- **AgentReview** — via [AgentReview](https://github.com/Ahren09/AgentReview) (Jin et al., EMNLP 2024).
|
| 59 |
+
|
| 60 |
+
ICLR/OpenReview-derived content remains subject to [OpenReview's terms](https://openreview.net/legal/terms).
|