nielsr HF Staff commited on
Commit
aa60d75
·
verified ·
1 Parent(s): e405b49

Add model card and metadata

Browse files

Hi! I'm Niels, part of the community team at Hugging Face.

This PR improves the model card by adding relevant metadata and documentation.
- Added `library_name: transformers` as the model configuration indicates compatibility with the library.
- Added `pipeline_tag: text-generation`.
- Added links to the associated research paper and the official GitHub repository for context.
- Included the citation for the project.

Files changed (1) hide show
  1. README.md +33 -3
README.md CHANGED
@@ -1,3 +1,33 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
+ # CoCoReviewBench Model
8
+
9
+ This repository contains a model checkpoint from the paper [CoCoReviewBench: A Completeness- and Correctness-Oriented Benchmark for AI Reviewers](https://huggingface.co/papers/2605.07905).
10
+
11
+ ## Introduction
12
+ CoCoReviewBench is a benchmark designed for reliable and fine-grained evaluation of AI reviewers. It curates 3,900 papers from ICLR and NeurIPS, focusing on:
13
+ - **Completeness**: Evaluating by category to avoid penalizing models for issues missing in human references.
14
+ - **Correctness**: Filtering human reviews using reviewer-author-meta-reviewer discussions to ensure accuracy.
15
+
16
+ ## Links
17
+ - **Paper**: [CoCoReviewBench: A Completeness- and Correctness-Oriented Benchmark for AI Reviewers](https://huggingface.co/papers/2605.07905)
18
+ - **Code**: [Official GitHub Repository](https://github.com/hexuandeng/CoCoReviewBench)
19
+
20
+ ## Citation
21
+
22
+ ```bibtex
23
+ @inproceedings{deng2026cocoreviewbench,
24
+ title = {{CoCoReviewBench}: A Completeness- and Correctness-Oriented Benchmark for {AI} Reviewers},
25
+ author = {Deng, Hexuan and Li, Yichen and Ke, Xiaopeng and Hu, Ruina and Wong, Derek F. and Wang, Yue and Liu, Xuebo and Huang, Dehao and Zhang, Min},
26
+ booktitle = {Proceedings of the 43rd International Conference on Machine Learning},
27
+ series = {Proceedings of Machine Learning Research},
28
+ publisher = {PMLR},
29
+ year = {2026},
30
+ note = {To appear},
31
+ url = {https://github.com/hexuandeng/CoCoReviewBench}
32
+ }
33
+ ```