rellabear commited on
Commit
99a5502
·
1 Parent(s): daa31b5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -26
README.md CHANGED
@@ -1,29 +1,60 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: paper_id
5
- dtype: string
6
- - name: source
7
- dtype: string
8
- - name: title
9
- dtype: string
10
- - name: abstract
11
- dtype: string
12
- - name: num_figures
13
- dtype: int32
14
- - name: paper_json
15
- dtype: string
16
- - name: method_figure
17
- dtype: image
18
- - name: result_figure
19
- dtype: image
20
- splits:
21
- - name: test
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
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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).