An RL-trained scientific peer review model based on
Qwen3-8B. ProReviewer-8B is fine-tuned using Group Relative Policy Optimization (GRPO) to produce high-quality, evidence-based peer reviews of scientific papers.
The recommended way to use this model is through the ProReviewer agent framework in the
ProReviewer:
1from reviewer.evaluation import run_inference
2
3paper = {
4 "paper_id": "example",
5 "paper_content": "# Paper Title\n\nAbstract: ...",
6 "human_avg_score": 5.0,
7}
8
9# Option 1: Use a config name from config.toml (model served via vLLM)
10result = await run_inference(paper, model="proreviewer-8B")
11
12# Option 2: Use a local path (loads model directly via vLLM)
13result = await run_inference(paper, model="/path/to/ProReviewer-8B")
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("UKPLab/ProReviewer-8B", torch_dtype="bfloat16")
4tokenizer = AutoTokenizer.from_pretrained("UKPLab/ProReviewer-8B")
1@article{fang2026passive,
2 title={From Passive Generation to Investigation: A Proactive Scientific Peer Review Agent},
3 author={Fang, Haishuo and Feng, Yue and Gurevych, Iryna},
4 journal={arXiv preprint arXiv:2606.13349},
5 year={2026}
6}
This model is released under the
MIT License.