CoolFace
Datasetpublic

kelseye/test_data

RPC-Bench: A Fine-grained Benchmark for Research Paper Comprehension 🌐 Project Page β€’ πŸ’» GitHub β€’ πŸ“– Paper RPC-Bench is a fine-grained benchmark for research paper comprehension. It is built from review-rebuttal exchanges of high-quality academic papers and supports both text-only and visual evaluation through complementary paper representations. Data Structure RPC-Bench is organized into train, dev, and test subsets. Split assignments… See the full description on the dataset page: https://huggingface.co/datasets/kelseye/test_data.

sourceHugging Faceotherupdated 3mo agoView on Hugging Face
0likes957downloads
README.md107 linesDownload Raw Back to root
1---2license: other3pretty_name: RPC-Bench4task_categories:5  - question-answering6language:7  - en8tags:9  - research-paper10  - document-understanding11  - multimodal12  - benchmark13  - llm14  - vlm15---16 17<div align="center">18 19# RPC-Bench: A Fine-grained Benchmark for Research Paper Comprehension20 21</div>22 23<p align="center">24    🌐 <a href="https://rpc-bench.github.io/" target="_blank">Project Page</a> β€’25    πŸ’» <a href="https://github.com/zai-org/RPC-Bench" target="_blank">GitHub</a> β€’26    πŸ“– <a href="https://arxiv.org/abs/2601.14289" target="_blank">Paper</a>27</p>28 29<div align="center">30    <img src="assets/pipeline.png" width="100%" />31</div>32 33RPC-Bench is a fine-grained benchmark for research paper comprehension. It is built from review-rebuttal exchanges of high-quality academic papers and supports both text-only and visual evaluation through complementary paper representations.34 35## Data Structure36 37RPC-Bench is organized into `train`, `dev`, and `test` subsets. Split assignments are recorded in `manifest.jsonl`, and the original split JSON files are provided in `split_metadata/` (`train.json`, `dev.json`, `test.json`).38 39`md/` contains Markdown files parsed from each paper by MinerU. These files provide the text input for LLM-oriented evaluation.40 41`parse/` contains the full MinerU parsing outputs for each paper, including structured layout and content artifacts.42 43`pdf/` contains the original paper PDFs.44 45`vlm/` contains page images rendered from the PDFs with PyMuPDF at 200 DPI for VLM-oriented evaluation.46 47```text48RPC-Bench/49β”œβ”€β”€ README.md50β”œβ”€β”€ manifest.jsonl51β”œβ”€β”€ split_metadata/52β”‚   β”œβ”€β”€ train.json53β”‚   β”œβ”€β”€ dev.json54β”‚   └── test.json55β”œβ”€β”€ parse/56β”‚   β”œβ”€β”€ train/57β”‚   β”‚   └── <paper_id>/58β”‚   β”œβ”€β”€ dev/59β”‚   β”‚   └── <paper_id>/60β”‚   └── test/61β”‚       └── <paper_id>/62β”œβ”€β”€ md/63β”‚   β”œβ”€β”€ train/64β”‚   β”‚   └── <paper_id>/65β”‚   β”‚       └── <paper_id>.md66β”‚   β”œβ”€β”€ dev/67β”‚   β”‚   └── <paper_id>/68β”‚   β”‚       └── <paper_id>.md69β”‚   └── test/70β”‚       └── <paper_id>/71β”‚           └── <paper_id>.md72β”œβ”€β”€ pdf/73β”‚   β”œβ”€β”€ train/74β”‚   β”‚   └── <paper_id>.pdf75β”‚   β”œβ”€β”€ dev/76β”‚   β”‚   └── <paper_id>.pdf77β”‚   └── test/78β”‚       └── <paper_id>.pdf79└── vlm/80    β”œβ”€β”€ train/81    β”‚   └── <paper_id>/82    β”œβ”€β”€ dev/83    β”‚   └── <paper_id>/84    └── test/85        └── <paper_id>/86```87 88## Practical Uses89 90RPC-Bench can be used to try paper-centric systems that require broader document understanding rather than local snippet matching.91 92- Research paper comprehension: try models on full-paper understanding, including core concepts, methods, and experimental findings.93- Long-context evaluation: try whether longer context windows or long-context architectures improve document-level reasoning.94- Multimodal reasoning: try models that combine textual evidence with page-level figures, tables, and diagrams in the original PDF layout.95- RAG system diagnosis: try retrieval, chunking, and evidence-fusion strategies for paper-centric workflows beyond snippet-level retrieval accuracy.96 97## Citation98 99```bibtex100@article{chen2026rpc,101  title={RPC-Bench: A Fine-grained Benchmark for Research Paper Comprehension},102  author={Chen, Yelin and Zhang, Fanjin and Sun, Suping and Pang, Yunhe and Wang, Yuanchun and Song, Jian and Li, Xiaoyan and Hou, Lei and Zhao, Shu and Tang, Jie and others},103  journal={arXiv preprint arXiv:2601.14289},104  year={2026}105}106```107 
kelseye/test_data Β· CoolFace