Add model card for ReviewClassify
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: transformers
|
| 4 |
+
pipeline_tag: text-classification
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# ReviewClassify
|
| 8 |
+
|
| 9 |
+
This model is a component of **CoCoReviewBench**, a benchmark designed for the reliable and fine-grained evaluation of AI reviewers. Specifically, this model is used in the classification stage of the evaluation pipeline to categorize atomic opinions extracted from reviews into a predefined taxonomy.
|
| 10 |
+
|
| 11 |
+
- **Paper:** [CoCoReviewBench: A Completeness- and Correctness-Oriented Benchmark for AI Reviewers](https://huggingface.co/papers/2605.07905)
|
| 12 |
+
- **Repository:** [GitHub - hexuandeng/CoCoReviewBench](https://github.com/hexuandeng/CoCoReviewBench)
|
| 13 |
+
|
| 14 |
+
## Model Description
|
| 15 |
+
|
| 16 |
+
CoCoReviewBench addresses the challenge of evaluating AI-generated paper reviews. Since human reviews often cover only a subset of salient issues and sometimes contain mistakes, they are unreliable as gold references. To address this, the authors build category-specific benchmark subsets to strengthen Completeness and leverage reviewer-author-meta-review discussions to strengthen Correctness.
|
| 17 |
+
|
| 18 |
+
The `ReviewClassify` model is fine-tuned to classify discussion points into specific taxonomy labels, enabling category-level performance analysis of AI reviewers.
|
| 19 |
+
|
| 20 |
+
## Usage
|
| 21 |
+
|
| 22 |
+
This model is intended for use within the CoCoReviewBench evaluation pipeline. For detailed instructions on generating AI reviews, splitting them into atomic opinions, and running the classification stage, please refer to the [GitHub repository](https://github.com/hexuandeng/CoCoReviewBench).
|
| 23 |
+
|
| 24 |
+
## Citation
|
| 25 |
+
|
| 26 |
+
```bibtex
|
| 27 |
+
@inproceedings{deng2026cocoreviewbench,
|
| 28 |
+
title = {{CoCoReviewBench}: A Completeness- and Correctness-Oriented Benchmark for {AI} Reviewers},
|
| 29 |
+
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},
|
| 30 |
+
booktitle = {Proceedings of the 43rd International Conference on Machine Learning},
|
| 31 |
+
series = {Proceedings of Machine Learning Research},
|
| 32 |
+
publisher = {PMLR},
|
| 33 |
+
year = {2026},
|
| 34 |
+
note = {To appear},
|
| 35 |
+
url = {https://github.com/hexuandeng/CoCoReviewBench}
|
| 36 |
+
}
|
| 37 |
+
```
|