author-centric-review-eval
Graph-Guided Passage Retrieval for Author-Centric Structured Feedback — Chitale et al. (2025) (arXiv:2505.14376, 2025)
What this evaluates
Evaluates an LLM's ability to generate structured, author-centric academic feedback (Summary, Strengths, Weaknesses, Questions) from long research papers. It probes the model's capacity to retrieve salient passages via graph-based retrieval and synthesize constructive pre-submission reviews without relying on full context or multi-agent systems.
Datasets
- ICLR 2024 (ICT) — total 5653; splits: train (-1), test (-1)
- CNT_10 — total 10; splits: test (10)
Metrics
human evaluation (primary) — range: other
- Human raters assess the generated Summary, Strengths, Weaknesses, and Questions sections against ground-truth reviews or predefined criteria for constructive feedback quality.
Input / output format
Input: Parsed academic paper represented as a hierarchical graph (nodes: headings, passages, sentences) or raw text document.
Output: Structured review containing four sections: Summary, Strengths, Weaknesses, and Questions.
Scoring recipe
def score_human_eval(predictions, gold_reviews):
scores = []
for pred, gold in zip(predictions, gold_reviews):
scores.append(human_rater_score(pred, gold))
return sum(scores) / len(scores)
Common pitfalls
- The evaluation explicitly excludes rating-based fields (Soundness, Presentation, Contribution, Confidence, Rating) to focus solely on constructive, author-centric feedback.
- Human evaluation is performed on a small supplementary set (CNT_10) alongside ICLR 2024 test data, so results may not generalize to larger unseen venues without caution.
Evidence (verbatim from paper)
Each paper is associated with multiple reviews containing sections such as Summary, Strengths, Weaknesses, Questions, Soundness, Presentation, Contribution, Confidence, and Rating. We retain only the Summary, Strengths, Weaknesses, and Questions sections, as these encode constructive feedback for authors-centric pre-submission support... To assess cross-venue performance, we curate a supplementary dataset of 10 papers from COLM and NeurIPS 2025 (CNT_10). This set complements the ICLR 2024 test data (ICT) for the human evaluation detailed in Section[6.3].
Citation
@misc{chitale2025graphguided,
title={Graph-Guided Passage Retrieval for Author-Centric Structured Feedback},
author={Chitale et al. (2025)},
year={2025},
note={arXiv:2505.14376}
}
1---2name: author-centric-review-eval3description: Evaluates an LLM's ability to generate structured, author-centric academic feedback (Summary, Strengths, Weaknesses, Questions) from long research papers. It probes the model's capacity to retrieve salient passages via graph-based retrieval and synthesize constructive pre-submission reviews without relying on full context or multi-agent systems. Use when the user wants to benchmark on ICLR 2024 (ICT), CNT_10, or asks about evaluating this task. Reports human evaluation.4---56# author-centric-review-eval78> Graph-Guided Passage Retrieval for Author-Centric Structured Feedback — Chitale et al. (2025) (arXiv:2505.14376, 2025)910## What this evaluates1112Evaluates an LLM's ability to generate structured, author-centric academic feedback (Summary, Strengths, Weaknesses, Questions) from long research papers. It probes the model's capacity to retrieve salient passages via graph-based retrieval and synthesize constructive pre-submission reviews without relying on full context or multi-agent systems.1314## Datasets1516- **ICLR 2024 (ICT)** — total 5653; splits: train (-1), test (-1)17- **CNT_10** — total 10; splits: test (10)1819## Metrics2021- `human evaluation` **(primary)** — range: other22 - Human raters assess the generated Summary, Strengths, Weaknesses, and Questions sections against ground-truth reviews or predefined criteria for constructive feedback quality.2324## Input / output format2526**Input**: Parsed academic paper represented as a hierarchical graph (nodes: headings, passages, sentences) or raw text document.2728**Output**: Structured review containing four sections: Summary, Strengths, Weaknesses, and Questions.2930## Scoring recipe3132```python33def score_human_eval(predictions, gold_reviews):34 scores = []35 for pred, gold in zip(predictions, gold_reviews):36 scores.append(human_rater_score(pred, gold))37 return sum(scores) / len(scores)38```3940## Common pitfalls4142- The evaluation explicitly excludes rating-based fields (Soundness, Presentation, Contribution, Confidence, Rating) to focus solely on constructive, author-centric feedback.43- Human evaluation is performed on a small supplementary set (CNT_10) alongside ICLR 2024 test data, so results may not generalize to larger unseen venues without caution.4445## Evidence (verbatim from paper)4647> Each paper is associated with multiple reviews containing sections such as Summary, Strengths, Weaknesses, Questions, Soundness, Presentation, Contribution, Confidence, and Rating. We retain only the Summary, Strengths, Weaknesses, and Questions sections, as these encode constructive feedback for authors-centric pre-submission support... To assess cross-venue performance, we curate a supplementary dataset of 10 papers from COLM and NeurIPS 2025 (CNT_10). This set complements the ICLR 2024 test data (ICT) for the human evaluation detailed in Section[6.3].4849## Citation5051```bibtex52@misc{chitale2025graphguided,53 title={Graph-Guided Passage Retrieval for Author-Centric Structured Feedback},54 author={Chitale et al. (2025)},55 year={2025},56 note={arXiv:2505.14376}57}58```5960- arXiv: 2505.14376