Update README.md
Browse files
README.md
CHANGED
|
@@ -12,7 +12,75 @@ configs:
|
|
| 12 |
- config_name: default
|
| 13 |
data_files:
|
| 14 |
- split: train
|
| 15 |
-
path: benchmark.jsonl
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# SupraReviewBench
|
|
@@ -27,8 +95,9 @@ The dataset is intended for opinion-level evaluation and training, with explicit
|
|
| 27 |
labels that mark which reviewer opinions are likely correct or incorrect.
|
| 28 |
|
| 29 |
## Dataset viewer
|
| 30 |
-
|
| 31 |
-
|
|
|
|
| 32 |
|
| 33 |
## Source and coverage
|
| 34 |
- Source: OpenReview discussions (ICLR and NeurIPS). Use the `conference` field
|
|
@@ -37,6 +106,7 @@ config above declares a single `train` split so the Dataset Viewer can load it.
|
|
| 37 |
- Language: primarily English.
|
| 38 |
|
| 39 |
## Data format and fields
|
|
|
|
| 40 |
Each JSONL line is a single JSON object with the following top-level fields.
|
| 41 |
Some fields are optional depending on the paper or venue.
|
| 42 |
|
|
@@ -117,4 +187,4 @@ This dataset is released under CC BY 4.0.
|
|
| 117 |
|
| 118 |
## Citation
|
| 119 |
If you use this dataset, please cite the associated paper or this repository.
|
| 120 |
-
Add a BibTeX entry here if you have a preferred citation.
|
|
|
|
| 12 |
- config_name: default
|
| 13 |
data_files:
|
| 14 |
- split: train
|
| 15 |
+
path: benchmark/benchmark.jsonl
|
| 16 |
+
features:
|
| 17 |
+
- name: id
|
| 18 |
+
dtype: string
|
| 19 |
+
- name: conference
|
| 20 |
+
dtype: string
|
| 21 |
+
- name: content
|
| 22 |
+
struct:
|
| 23 |
+
- name: title
|
| 24 |
+
dtype: string
|
| 25 |
+
- name: abstract
|
| 26 |
+
dtype: string
|
| 27 |
+
- name: pdf
|
| 28 |
+
dtype: string
|
| 29 |
+
- name: 'TL;DR'
|
| 30 |
+
dtype: string
|
| 31 |
+
- name: authors
|
| 32 |
+
sequence:
|
| 33 |
+
dtype: string
|
| 34 |
+
- name: conflicts
|
| 35 |
+
sequence:
|
| 36 |
+
dtype: string
|
| 37 |
+
- name: keywords
|
| 38 |
+
sequence:
|
| 39 |
+
dtype: string
|
| 40 |
+
- name: authorids
|
| 41 |
+
sequence:
|
| 42 |
+
dtype: string
|
| 43 |
+
- name: venue
|
| 44 |
+
dtype: string
|
| 45 |
+
- name: venueid
|
| 46 |
+
dtype: string
|
| 47 |
+
- name: _bibtex
|
| 48 |
+
dtype: string
|
| 49 |
+
- name: paperhash
|
| 50 |
+
dtype: string
|
| 51 |
+
- name: decision
|
| 52 |
+
dtype: string
|
| 53 |
+
- name: reviews
|
| 54 |
+
sequence:
|
| 55 |
+
sequence:
|
| 56 |
+
dtype: string
|
| 57 |
+
- name: metareview
|
| 58 |
+
sequence:
|
| 59 |
+
sequence:
|
| 60 |
+
dtype: string
|
| 61 |
+
- name: sentence_texts
|
| 62 |
+
sequence:
|
| 63 |
+
dtype: string
|
| 64 |
+
- name: opinion_groups
|
| 65 |
+
sequence:
|
| 66 |
+
sequence:
|
| 67 |
+
dtype: int64
|
| 68 |
+
- name: opinions
|
| 69 |
+
sequence:
|
| 70 |
+
sequence:
|
| 71 |
+
dtype: string
|
| 72 |
+
- name: conflicts_validation
|
| 73 |
+
sequence:
|
| 74 |
+
dtype: string
|
| 75 |
+
- name: rebuttal_validation
|
| 76 |
+
sequence:
|
| 77 |
+
dtype: string
|
| 78 |
+
- name: PDF_path
|
| 79 |
+
dtype: string
|
| 80 |
+
- name: PDF_version
|
| 81 |
+
dtype: string
|
| 82 |
+
- name: MD_path
|
| 83 |
+
dtype: string
|
| 84 |
---
|
| 85 |
|
| 86 |
# SupraReviewBench
|
|
|
|
| 95 |
labels that mark which reviewer opinions are likely correct or incorrect.
|
| 96 |
|
| 97 |
## Dataset viewer
|
| 98 |
+
The Dataset Viewer reads `benchmark/benchmark.jsonl`. The YAML config above
|
| 99 |
+
declares a single `train` split and an explicit schema so the Viewer renders
|
| 100 |
+
columns normally instead of wrapping records into a single text field.
|
| 101 |
|
| 102 |
## Source and coverage
|
| 103 |
- Source: OpenReview discussions (ICLR and NeurIPS). Use the `conference` field
|
|
|
|
| 106 |
- Language: primarily English.
|
| 107 |
|
| 108 |
## Data format and fields
|
| 109 |
+
The dataset is stored as a JSONL file named `benchmark/benchmark.jsonl`.
|
| 110 |
Each JSONL line is a single JSON object with the following top-level fields.
|
| 111 |
Some fields are optional depending on the paper or venue.
|
| 112 |
|
|
|
|
| 187 |
|
| 188 |
## Citation
|
| 189 |
If you use this dataset, please cite the associated paper or this repository.
|
| 190 |
+
Add a BibTeX entry here if you have a preferred citation.
|