CoolFace
Datasetpublic

anonymousNeurIPS2026submission4281/reviewarena-eval

ReviewArena-Eval ReviewArena-Eval is the benchmark slice that accompanies the NeurIPS Evaluations & Datasets submission ReviewArena: A Large-Scale Cross-Conference Dataset and Benchmark for LLM Peer Review. It evaluates LLMs on the LLM-as-reviewer task: given a full paper and the structured review form used at that paper's venue-year, the model must produce overall rating, confidence, sub-scores, and free-text fields that are then compared against the actual human reviews on… See the full description on the dataset page: https://huggingface.co/datasets/anonymousNeurIPS2026submission4281/reviewarena-eval.

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes113downloads
Dataset Card

ReviewArena-Eval

ReviewArena-Eval is the benchmark slice that accompanies the NeurIPS Evaluations & Datasets submission ReviewArena: A Large-Scale Cross-Conference Dataset and Benchmark for LLM Peer Review. It evaluates LLMs on the LLM-as-reviewer task: given a full paper and the structured review form used at that paper's venue-year, the model must produce overall rating, confidence, sub-scores, and free-text fields that are then compared against the actual human reviews on OpenReview.

The benchmark intentionally measures agreement with the historical review process, not objective paper quality. Human reviews are noisy, but they are the relevant target for systems that claim to approximate or assist human reviewing.

python
from datasets import load_dataset
ds = load_dataset("anonymousNeurIPS2026submission4281/reviewarena-eval", split="train")
print(ds)
# Dataset({features: [...], num_rows: 1002})

Composition

  • 1,002 papers total
  • 167 papers per numerically rated venue: NeurIPS, ICLR, ICML, CoRL, COLM, EMNLP
  • Within a venue, papers are sampled uniformly across released years
  • TMLR is excluded (no numeric overall score) but remains in the parent dataset for claim-evidence and discussion tasks
VenueNative scaleYears sampledPapers
NeurIPSoverall 1–102021, 2022, 2023, 2023 D&B, 2024, 2025167
ICLRoverall 1–102020 – 2026167
ICMLoverall 1–52025167
CoRLoverall 1–42021 – 2024167
COLMoverall 1–102024, 2025167
EMNLPExcitement 1–52023 (main + Findings)167

Sub-score axes also vary by venue-year — NeurIPS 2025 uses quality / clarity / significance / originality; earlier NeurIPS and recent ICLR use soundness / presentation / contribution; CoRL adds robotics-specific axes. A generic "rate from 1–10" prompt is invalid for half the benchmark, so prompts must be rendered per (venue, year) with the correct scale endpoints, field names, and sub-score axes.

Task

For paper p from venue-year (v, y) and template T_{v,y} matching that venue's review form, model M produces

M(T_{v,y}, p) → (overall_rating, confidence, sub_scores, text_fields)

Targets are the corresponding fields in the human reviews on OpenReview. Multiple human reviewers per paper are aggregated as the per-paper mean for numeric metrics and concatenated for text metrics.

Schema

Each row is one paper. Inherits the parent ReviewArena schema; the most relevant fields:

ColumnTypeNotes
forum_idstringOpenReview forum ID (primary key)
conferencestringneurips / iclr / icml / corl / colm / emnlp
yearint32Conference year
trackstringmain, datasets_and_benchmarks, findings, etc.
venue_idstringOpenReview venue ID, e.g. NeurIPS.cc/2024/Conference
titlestring
abstractstring
authorslist<string>
keywordslist<string>
tldrstring
primary_areastring
decisionstringRaw decision string
decision_commentstringArea-chair meta-review
author_rebuttalstringGeneral rebuttal where applicable
num_reviewsint32
reviews_jsonstringAll reviews as JSON-encoded list[dict] (union of venue forms)
markdownstringOCR'd full text of the paper PDF (≤ 50,000 chars used in our runs)
markdown_charsint64len(markdown)

The review union schema (fields populated per venue) is documented on the parent dataset card.

Evaluation Protocol

  • PDFs → markdown with `nvidia/nemotron-ocr-v2`, truncated to 50,000 characters when needed. Extraction is fixed across models so differences are not confounded with OCR differences.
  • Inference at temperature 0 through Fireworks AI (or any OpenAI-compatible provider).
  • Prompts are venue-year-aware: native scale endpoints, field names, sub-score axes, and accept/reject threshold all rendered from (v, y). The template is a correctness condition, not prompt engineering — if the venue asked humans for a 1–4 recommendation, the model is asked for a 1–4 recommendation.

Metrics

MetricWhat it measures
Overall-rating MAE + signed biasNumeric agreement on each venue's native scale
Sub-score MAEAgreement on auxiliary axes (soundness / presentation / contribution / …)
ROUGE / BLEU / BERTScore-F1Free-text agreement on summary, strengths, weaknesses
ICLR accept/reject macro-F1Decision discrimination (ICLR is the only slice with many rejections)
Δ_{a-r} (predicted accept − reject mean)Score separation between accepted and rejected ICLR papers
Calibration / range diagnosticsWhether models use the full scale or compress to the middle

Per-venue MAE values are not comparable across venues without the scale row — a CoRL error of 0.65 on a 1–4 scale is not the same as a NeurIPS error of 0.65 on a 1–10 scale.

Baseline Results

Six open-weight LLMs served through Fireworks AI at temperature=0, single-shot per paper.

Per-venue overall-rating MAE (signed bias)

ModelNeurIPS (1–10)ICLR (1–10)ICML (1–5)CoRL (1–4)COLM (1–10)EMNLP (1–5)
GPT-OSS-120B1.08 (+0.56)1.06 (+0.36)0.58 (−0.36)0.65 (−0.57)0.79 (−0.46)0.52 (−0.36)
Kimi K2.61.09 (+0.68)1.03 (+0.49)0.53 (−0.28)0.41 (−0.27)0.74 (−0.40)0.56 (−0.50)
Qwen3.6-Plus1.17 (+0.87)1.02 (+0.51)0.55 (−0.02)0.43 (−0.31)0.61 (−0.14)0.44 (−0.25)
GLM-5.11.23 (+0.94)1.17 (+0.75)0.61 (+0.06)0.44 (−0.22)0.72 (−0.03)0.88 (−0.81)
DeepSeek-V4-Pro1.08 (+0.58)0.99 (+0.23)0.59 (−0.27)0.46 (−0.31)0.86 (−0.52)0.87 (−0.83)
Gemma-4-26B2.04 (+2.03)2.02 (+1.97)0.69 (+0.67)0.55 (+0.44)1.26 (+1.25)0.45 (+0.22)

Cross-axis summary

ModelPooled MAESub-score MAEBERTScore-F1ICLR macro-F1Δ_{a-r}
GPT-OSS-120B0.7830.6150.8310.6870.59
Kimi K2.60.7250.4490.8340.6130.47
Qwen3.6-Plus0.7000.4570.8330.6750.62
GLM-5.10.8370.4880.8380.7221.40
DeepSeek-V4-Pro0.8070.6030.8370.6550.66
Gemma-4-26B1.1690.7990.8380.3940.48

Key findings

  1. 1.Best overall-rating MAE is 0.70 (Qwen3.6-Plus); the next four models cluster within 0.14 pooled MAE.
  2. 2.Score compression is the dominant failure mode. On 1–10 venues, most models avoid ratings below 4 or above 7; on 1–4 venues they top out at 3/4. This produces positive bias on NeurIPS/ICLR (whose human distributions sit below the apparent model prior) and weak accept/reject separation.
  3. 3.Text similarity ≠ reviewer reliability. Gemma-4-26B ties for the best BERTScore-F1 but accepts nearly every ICLR paper (macro-F1 0.394). Conversely, Qwen3.6-Plus has the best numeric agreement but is not the best text mimic.
  4. 4.Sub-scores and overall rating come apart. GPT-OSS-120B is competitive on overall ratings but weaker on sub-scores; Kimi K2.6 better tracks auxiliary axes than overall recommendation.
  5. 5.GLM-5.1 alone shows usable accept/reject discrimination (1.40-point gap on ICLR), at the cost of slightly worse pooled MAE.

The benchmark therefore stress-tests three properties: (i) numeric calibration on the venue's native scale, (ii) ranking-style discrimination between accepts and rejects, and (iii) free-text agreement — and shows that current open-weight LLMs are not reliable standalone reviewers, even though they often produce plausible-looking review text.

Suggested uses

  • Stress-test new LLMs (open or closed) as scientific reviewers
  • Fine-tune / RLHF reviewer models against held-out venue-year cells
  • Calibration research: rating compression, accept/reject discrimination
  • Studying mismatch between text similarity and numeric agreement
  • Few-shot / RAG benchmarks that need full paper text + human reviews

Relationship to the parent dataset

This benchmark is a fixed, reproducible subset of the parent ReviewArena corpus (51,529 papers, 196,099 reviews, 558,785 OCR pages). The parent dataset retains all venues including TMLR for claim-evidence and discussion tasks; this card covers only the 1,002-paper benchmark slice with venue-year-aware prompts.

Citation

Under double-blind review for NeurIPS 2026 Evaluations & Datasets. Please cite the camera-ready proceedings entry once public; until then use an anonymous placeholder consistent with your venue's reviewer guidelines.