BFTree commited on
Commit
b3c02bf
·
verified ·
1 Parent(s): 0e54bee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -25
README.md CHANGED
@@ -2,31 +2,57 @@
2
  license: mit
3
  task_categories:
4
  - text-generation
 
5
  language:
6
  - en
7
  tags:
8
- - code
 
 
 
9
  pretty_name: RWGBench
10
  size_categories:
11
  - 10K<n<100K
12
  ---
13
 
14
- RWGBench is a benchmark for evaluating related work generation (RWG) through the lens of **scholarly positioning** and citation decision-making, rather than surface-level text similarity. It includes a large-scale paper collection, a 1,091,394 retrieval corpus, 40,108 papers in computer sccience with full text and citation lists, a curated 100-paper test set and a fully automated evaluation framework.
15
 
 
 
 
 
16
 
 
17
 
18
- ## Dataset
 
 
 
 
19
 
20
- | File | # Entries | Description |
21
- | --------------------- | --------: | ------------------------------------------------------------ |
22
- | `papers.json` | 40,108 | CS papers (arXiv 2020–2025) with full text and citation lists |
23
- | `corpus.json` | 1,091,394 | Retrieval corpus — title + abstract per paper |
24
- | `gold100_papers.json` | 100 | Quality-filtered test set with gold related work sections |
25
 
26
- <details>
27
- <summary>corpus.json &nbsp;—&nbsp; retrieval candidates</summary>
28
- <br>
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  ```json
32
  {
@@ -36,12 +62,7 @@ RWGBench is a benchmark for evaluating related work generation (RWG) through the
36
  }
37
  ```
38
 
39
- </details>
40
-
41
- <details>
42
- <summary>gold100_papers.json &nbsp;—&nbsp; test papers</summary>
43
- <br>
44
-
45
 
46
  ```json
47
  {
@@ -50,16 +71,41 @@ RWGBench is a benchmark for evaluating related work generation (RWG) through the
50
  "abstract": "...",
51
  "introduction": "...",
52
  "related_work": "Model quantization. Quantization is a widely employed technique...",
53
- "citations": [191955, 118706, 517176, 264652, 1589, 2253, ... ],
54
- "overall_score": 90.6
 
 
 
 
 
 
 
 
55
  }
56
  ```
57
 
58
- `citations` is a list of `doc_id`s from `corpus.json`. `overall_score` is a GLM-4 quality rating (0–100).
59
- </details>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
 
 
 
61
 
62
- ## Data Collection & Ethics
63
- - **Source**: Public arXiv metadata (2020–2025), respecting arXiv's [terms of use](https://arxiv.org/help/api/tou)
64
- - **Copyright**: Only metadata (titles, abstracts) and author-written content; no full-text.
65
- - **Ethical Use**: Intended for non-commercial research only
 
2
  license: mit
3
  task_categories:
4
  - text-generation
5
+ - text-retrieval
6
  language:
7
  - en
8
  tags:
9
+ - related-work-generation
10
+ - scholarly-positioning
11
+ - citation-evaluation
12
+ - retrieval-augmented-generation
13
  pretty_name: RWGBench
14
  size_categories:
15
  - 10K<n<100K
16
  ---
17
 
18
+ # RWGBench
19
 
20
+ RWGBench is a benchmark for evaluating related work generation as a
21
+ citation-centric scholarly positioning task. It tests whether a system can
22
+ select, organize, and frame prior work for a target paper, rather than only
23
+ producing fluent text that resembles a reference related work section.
24
 
25
+ ## Files
26
 
27
+ | File | Entries | Description |
28
+ |---|---:|---|
29
+ | `papers.json` | 40,108 | Source paper collection with parsed metadata, sections, related work text, and citation identifiers. |
30
+ | `corpus.json` | 1,091,394 | Retrieval corpus. Each entry contains `doc_id`, `title`, and `abstract`. |
31
+ | `gold100_papers.json` | 100 | Peer-reviewed evaluation split used for the main experiments. The papers are matched to accepted ICLR, NeurIPS, or ICML records. |
32
 
33
+ ## Evaluation Split Composition
 
 
 
 
34
 
35
+ The `gold100_papers.json` split contains 100 peer-reviewed papers matched by
36
+ exact normalized title to accepted OpenReview records. Its venue distribution
37
+ is:
38
 
39
+ | Venue | Papers |
40
+ |---|---:|
41
+ | ICLR | 42 |
42
+ | NeurIPS | 34 |
43
+ | ICML | 24 |
44
+
45
+ The publication-year distribution is:
46
+
47
+ | Year | Papers |
48
+ |---|---:|
49
+ | 2023 | 2 |
50
+ | 2024 | 61 |
51
+ | 2025 | 37 |
52
+
53
+ ## Schema
54
+
55
+ ### `corpus.json`
56
 
57
  ```json
58
  {
 
62
  }
63
  ```
64
 
65
+ ### `gold100_papers.json`
 
 
 
 
 
66
 
67
  ```json
68
  {
 
71
  "abstract": "...",
72
  "introduction": "...",
73
  "related_work": "Model quantization. Quantization is a widely employed technique...",
74
+ "citations": [191955, 118706, 517176, 264652, 1589],
75
+ "peer_review": {
76
+ "match_type": "normalized_title_exact",
77
+ "primary_venue": {
78
+ "venue": "ICLR",
79
+ "year": "2024",
80
+ "venue_id": "ICLR.cc/2024/Conference",
81
+ "openreview_id": "UmMa3UNDAz"
82
+ }
83
+ }
84
  }
85
  ```
86
 
87
+ `citations` contains `doc_id` values from `corpus.json`. The reference related
88
+ work section is author-written text from the target paper. Venue metadata is
89
+ stored under `peer_review.primary_venue`.
90
+
91
+ ## Use With The Code Repository
92
+
93
+ Download the dataset files into the GitHub repository's `data/` directory:
94
+
95
+ ```text
96
+ data/
97
+ papers.json
98
+ corpus.json
99
+ gold100_papers.json
100
+ ```
101
+
102
+ Then run the generation and evaluation scripts from the code repository.
103
+
104
+ ## Data Collection And Use
105
 
106
+ RWGBench is built from public scholarly documents and metadata. Source
107
+ documents may have heterogeneous licenses, so users should follow the license
108
+ terms of the underlying papers when redistributing document-derived text.
109
 
110
+ The benchmark is intended for research on retrieval-augmented generation,
111
+ citation selection, scholarly writing evaluation, and related work generation.