Haixx commited on
Commit
0ab17cd
·
verified ·
1 Parent(s): f4c4fff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -22
README.md CHANGED
@@ -31,42 +31,23 @@ An RL-trained scientific peer review model based on [Qwen3-8B](https://huggingfa
31
 
32
  ProReviewer-8B is the backbone model for the **ProReviewer** agent, an R1-style reasoning agent that reviews scientific papers through structured investigation rather than passive generation. The model was trained with a multi-stage curriculum:
33
 
34
- 1. **Stage 1 (Format)**: Learning proper review structure and tool use
35
- 2. **Stage 2 (Evidence + Memory)**: Learning evidence-based judgment with structured memory (claims, questions, assessments, review outline)
36
-
37
- The model is designed to work with the ProReviewer agent framework, which provides:
38
- - **Structured Memory**: Tracks claims, questions, assessments, and review outline as the agent reads through a paper
39
- - **Paper Navigation**: Tools for reading sections and searching paper content
40
- - **Evidence-Based Judgment**: Grounds review points in specific paper evidence
41
 
42
  ### Training Details
43
 
44
  | Parameter | Value |
45
  |-----------|-------|
46
  | Base model | Qwen/Qwen3-8B |
47
- | Training method | GRPO with step-level advantages |
48
  | Training data | ICLR 2025 papers ([UKPLab/ProReviewer-Dataset](https://huggingface.co/datasets/UKPLab/ProReviewer-Dataset)) |
49
  | Architecture | Qwen3ForCausalLM |
50
  | Parameters | 8B |
51
- | Context length | 40,960 tokens |
52
  | Precision | bfloat16 |
53
 
54
- ### Reward Components
55
-
56
- The model was trained with a multi-dimensional reward function:
57
-
58
- | Component | Description |
59
- |-----------|-------------|
60
- | Format Compliance | Proper review structure (summary, strengths, weaknesses, questions, score) |
61
- | Score Difference | Alignment between predicted and human average scores |
62
- | Rubric Evaluation | Technical depth, grounding specificity, actionability, verifiability |
63
- | Duplicate Detection | Penalizes repeated weaknesses |
64
-
65
  ## Usage
66
 
67
  ### With the ProReviewer Agent
68
 
69
- The recommended way to use this model is through the ProReviewer agent framework:
70
 
71
  ```python
72
  from reviewer.core.proreviewer import ProReviewer
@@ -85,7 +66,7 @@ result = await run_inference(paper, model="UKPLab/ProReviewer-8B")
85
  ### With vLLM
86
 
87
  ```bash
88
- vllm serve UKPLab/ProReviewer-8B --max-model-len 16384 --dtype bfloat16
89
  ```
90
 
91
  ### With Transformers
 
31
 
32
  ProReviewer-8B is the backbone model for the **ProReviewer** agent, an R1-style reasoning agent that reviews scientific papers through structured investigation rather than passive generation. The model was trained with a multi-stage curriculum:
33
 
 
 
 
 
 
 
 
34
 
35
  ### Training Details
36
 
37
  | Parameter | Value |
38
  |-----------|-------|
39
  | Base model | Qwen/Qwen3-8B |
40
+ | Training method | SFT+ GRPO with step-level advantages |
41
  | Training data | ICLR 2025 papers ([UKPLab/ProReviewer-Dataset](https://huggingface.co/datasets/UKPLab/ProReviewer-Dataset)) |
42
  | Architecture | Qwen3ForCausalLM |
43
  | Parameters | 8B |
 
44
  | Precision | bfloat16 |
45
 
 
 
 
 
 
 
 
 
 
 
 
46
  ## Usage
47
 
48
  ### With the ProReviewer Agent
49
 
50
+ The recommended way to use this model is through the ProReviewer agent framework in the [ProReviewer](https://github.com/UKPLab/arxiv2026-ProReviewer):
51
 
52
  ```python
53
  from reviewer.core.proreviewer import ProReviewer
 
66
  ### With vLLM
67
 
68
  ```bash
69
+ vllm serve UKPLab/ProReviewer-8B --max-model-len 32768 --dtype bfloat16
70
  ```
71
 
72
  ### With Transformers