review-quality-eval
Is Peer Review Really in Decline? Analyzing Review Quality across Venues and Time — Kuznetsov et al. (2026) (arXiv:2601.15172, 2026)
What this evaluates
Evaluates the quality of academic peer review reports across different conferences and years using a multi-dimensional framework. It measures how substantive, actionable, and well-grounded reviews are, and tracks whether these qualities decline over time.
Datasets
Metrics
Q (primary) — range: [0, 1]
- Non-weighted average of all normalized measurement scores (LEN, ITX, EXL, GND, ACT, etc.) per review. Each base metric is first normalized to [0,1].
Spearman's ρ — range: [-1, 1]
- Rank-based correlation coefficient used to measure monotonic relationships between metric pairs and between lightweight vs LLM-based aggregate scores.
Input / output format
Input: Raw peer review text (30 to 28k characters) associated with a submitted paper.
Output: Normalized scores for each quality dimension and an aggregate quality score Q per review.
Scoring recipe
# Normalize each base metric m to [0,1]
m_norm = (m - m_min) / (m_max - m_min)
# Compute aggregate score Q
Q = mean([m_norm for m in base_metrics])
# Correlation
rho = spearmanr(scores_A, scores_B)
# Significance test
p_val = bootstrap_test(Q_year1, Q_year2, n_iter=10000, ci=0.99, correction='bonferroni')
Common pitfalls
- Count-based metrics (LEN, core items) have long tails and positive skew, requiring careful normalization before aggregation.
- Low Q scores may reflect non-genuine reviews (e.g., placeholder text, refusal to review, desk-reject flags) rather than poor quality.
- LLM-based metrics are computationally expensive and raise confidentiality concerns, so lightweight proxies are used for large-scale analysis.
Evidence (verbatim from paper)
Based on the effective ranges of the metrics, we normalize each metric to $[0,1]$ for ease of reporting and aggregation. Given that none of the metric pairs show extremely high correlations ($
ho$ > 0.9), we define an aggregate review quality score $Q$ as a non-weighted average of all our measurements (after normalization).
Citation
@misc{kuznetsov2026peerreview,
title={Is Peer Review Really in Decline? Analyzing Review Quality across Venues and Time},
author={Kuznetsov et al. (2026)},
year={2026},
note={arXiv:2601.15172}
}
1---2name: review-quality-eval3description: Evaluates the quality of academic peer review reports across different conferences and years using a multi-dimensional framework. It measures how substantive, actionable, and well-grounded reviews are, and tracks whether these qualities decline over time. Use when the user wants to benchmark on Peer Review Campaigns (ICLR, NeurIPS, ACL), or asks about evaluating this task. Reports Q.4---56# review-quality-eval78> Is Peer Review Really in Decline? Analyzing Review Quality across Venues and Time — Kuznetsov et al. (2026) (arXiv:2601.15172, 2026)910## What this evaluates1112Evaluates the quality of academic peer review reports across different conferences and years using a multi-dimensional framework. It measures how substantive, actionable, and well-grounded reviews are, and tracks whether these qualities decline over time.1314## Datasets1516- **Peer Review Campaigns (ICLR, NeurIPS, ACL)** — total ?; splits: full (-1); repo https://github.com/UKPLab/arxiv2026-review-quality-estimation1718## Metrics1920- `Q` **(primary)** — range: [0, 1]21 - Non-weighted average of all normalized measurement scores (LEN, ITX, EXL, GND, ACT, etc.) per review. Each base metric is first normalized to [0,1].22- `Spearman's ρ` — range: [-1, 1]23 - Rank-based correlation coefficient used to measure monotonic relationships between metric pairs and between lightweight vs LLM-based aggregate scores.2425## Input / output format2627**Input**: Raw peer review text (30 to 28k characters) associated with a submitted paper.2829**Output**: Normalized scores for each quality dimension and an aggregate quality score Q per review.3031## Scoring recipe3233```python34# Normalize each base metric m to [0,1]35m_norm = (m - m_min) / (m_max - m_min)36# Compute aggregate score Q37Q = mean([m_norm for m in base_metrics])38# Correlation39rho = spearmanr(scores_A, scores_B)40# Significance test41p_val = bootstrap_test(Q_year1, Q_year2, n_iter=10000, ci=0.99, correction='bonferroni')42```4344## Common pitfalls4546- Count-based metrics (LEN, core items) have long tails and positive skew, requiring careful normalization before aggregation.47- Low Q scores may reflect non-genuine reviews (e.g., placeholder text, refusal to review, desk-reject flags) rather than poor quality.48- LLM-based metrics are computationally expensive and raise confidentiality concerns, so lightweight proxies are used for large-scale analysis.4950## Evidence (verbatim from paper)5152> Based on the effective ranges of the metrics, we normalize each metric to $[0,1]$ for ease of reporting and aggregation. Given that none of the metric pairs show extremely high correlations ($
ho$ > 0.9), we define an aggregate review quality score $Q$ as a non-weighted average of all our measurements (after normalization).5354## Citation5556```bibtex57@misc{kuznetsov2026peerreview,58 title={Is Peer Review Really in Decline? Analyzing Review Quality across Venues and Time},59 author={Kuznetsov et al. (2026)},60 year={2026},61 note={arXiv:2601.15172}62}63```6465- arXiv: 2601.15172