Text Generation
Transformers
Safetensors
qwen3
trl
grpo
trl-autoresearch
qwen-grpo
gsm8k
reasoning
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use cmpatino/qwen-grpo-r5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cmpatino/qwen-grpo-r5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cmpatino/qwen-grpo-r5") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cmpatino/qwen-grpo-r5") model = AutoModelForCausalLM.from_pretrained("cmpatino/qwen-grpo-r5", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cmpatino/qwen-grpo-r5 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cmpatino/qwen-grpo-r5" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cmpatino/qwen-grpo-r5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cmpatino/qwen-grpo-r5
- SGLang
How to use cmpatino/qwen-grpo-r5 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "cmpatino/qwen-grpo-r5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cmpatino/qwen-grpo-r5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "cmpatino/qwen-grpo-r5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cmpatino/qwen-grpo-r5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cmpatino/qwen-grpo-r5 with Docker Model Runner:
docker model run hf.co/cmpatino/qwen-grpo-r5
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,202 +1,110 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
tags:
|
|
|
|
|
|
|
| 4 |
- trl-autoresearch
|
| 5 |
- qwen-grpo
|
| 6 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
-
#
|
| 10 |
-
|
| 11 |
-
<!-- Provide a quick summary of what the model is/does. -->
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
## Model Details
|
| 16 |
-
|
| 17 |
-
### Model Description
|
| 18 |
-
|
| 19 |
-
<!-- Provide a longer summary of what this model is. -->
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
- **Developed by:** [More Information Needed]
|
| 24 |
-
- **Funded by [optional]:** [More Information Needed]
|
| 25 |
-
- **Shared by [optional]:** [More Information Needed]
|
| 26 |
-
- **Model type:** [More Information Needed]
|
| 27 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 28 |
-
- **License:** [More Information Needed]
|
| 29 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 30 |
-
|
| 31 |
-
### Model Sources [optional]
|
| 32 |
-
|
| 33 |
-
<!-- Provide the basic links for the model. -->
|
| 34 |
-
|
| 35 |
-
- **Repository:** [More Information Needed]
|
| 36 |
-
- **Paper [optional]:** [More Information Needed]
|
| 37 |
-
- **Demo [optional]:** [More Information Needed]
|
| 38 |
-
|
| 39 |
-
## Uses
|
| 40 |
-
|
| 41 |
-
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 42 |
-
|
| 43 |
-
### Direct Use
|
| 44 |
-
|
| 45 |
-
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 46 |
-
|
| 47 |
-
[More Information Needed]
|
| 48 |
-
|
| 49 |
-
### Downstream Use [optional]
|
| 50 |
-
|
| 51 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 52 |
-
|
| 53 |
-
[More Information Needed]
|
| 54 |
-
|
| 55 |
-
### Out-of-Scope Use
|
| 56 |
-
|
| 57 |
-
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 58 |
-
|
| 59 |
-
[More Information Needed]
|
| 60 |
-
|
| 61 |
-
## Bias, Risks, and Limitations
|
| 62 |
-
|
| 63 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 64 |
-
|
| 65 |
-
[More Information Needed]
|
| 66 |
-
|
| 67 |
-
### Recommendations
|
| 68 |
-
|
| 69 |
-
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 70 |
-
|
| 71 |
-
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 72 |
-
|
| 73 |
-
## How to Get Started with the Model
|
| 74 |
-
|
| 75 |
-
Use the code below to get started with the model.
|
| 76 |
-
|
| 77 |
-
[More Information Needed]
|
| 78 |
-
|
| 79 |
-
## Training Details
|
| 80 |
-
|
| 81 |
-
### Training Data
|
| 82 |
-
|
| 83 |
-
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 84 |
-
|
| 85 |
-
[More Information Needed]
|
| 86 |
-
|
| 87 |
-
### Training Procedure
|
| 88 |
-
|
| 89 |
-
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 90 |
-
|
| 91 |
-
#### Preprocessing [optional]
|
| 92 |
-
|
| 93 |
-
[More Information Needed]
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
#### Training Hyperparameters
|
| 97 |
-
|
| 98 |
-
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 99 |
-
|
| 100 |
-
#### Speeds, Sizes, Times [optional]
|
| 101 |
-
|
| 102 |
-
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 103 |
-
|
| 104 |
-
[More Information Needed]
|
| 105 |
-
|
| 106 |
-
## Evaluation
|
| 107 |
-
|
| 108 |
-
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 109 |
-
|
| 110 |
-
### Testing Data, Factors & Metrics
|
| 111 |
-
|
| 112 |
-
#### Testing Data
|
| 113 |
-
|
| 114 |
-
<!-- This should link to a Dataset Card if possible. -->
|
| 115 |
-
|
| 116 |
-
[More Information Needed]
|
| 117 |
-
|
| 118 |
-
#### Factors
|
| 119 |
-
|
| 120 |
-
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 121 |
-
|
| 122 |
-
[More Information Needed]
|
| 123 |
-
|
| 124 |
-
#### Metrics
|
| 125 |
-
|
| 126 |
-
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 127 |
-
|
| 128 |
-
[More Information Needed]
|
| 129 |
-
|
| 130 |
-
### Results
|
| 131 |
-
|
| 132 |
-
[More Information Needed]
|
| 133 |
-
|
| 134 |
-
#### Summary
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
## Model Examination [optional]
|
| 139 |
-
|
| 140 |
-
<!-- Relevant interpretability work for the model goes here -->
|
| 141 |
-
|
| 142 |
-
[More Information Needed]
|
| 143 |
-
|
| 144 |
-
## Environmental Impact
|
| 145 |
-
|
| 146 |
-
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 147 |
-
|
| 148 |
-
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 149 |
-
|
| 150 |
-
- **Hardware Type:** [More Information Needed]
|
| 151 |
-
- **Hours used:** [More Information Needed]
|
| 152 |
-
- **Cloud Provider:** [More Information Needed]
|
| 153 |
-
- **Compute Region:** [More Information Needed]
|
| 154 |
-
- **Carbon Emitted:** [More Information Needed]
|
| 155 |
-
|
| 156 |
-
## Technical Specifications [optional]
|
| 157 |
-
|
| 158 |
-
### Model Architecture and Objective
|
| 159 |
-
|
| 160 |
-
[More Information Needed]
|
| 161 |
|
| 162 |
-
|
|
|
|
| 163 |
|
| 164 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 165 |
|
| 166 |
-
|
| 167 |
|
| 168 |
-
|
| 169 |
|
| 170 |
-
|
|
|
|
|
|
|
|
|
|
| 171 |
|
| 172 |
-
|
|
|
|
| 173 |
|
| 174 |
-
|
|
|
|
| 175 |
|
| 176 |
-
|
| 177 |
|
| 178 |
-
|
| 179 |
|
| 180 |
-
|
| 181 |
|
| 182 |
-
|
| 183 |
|
| 184 |
-
[
|
|
|
|
|
|
|
|
|
|
| 185 |
|
| 186 |
-
##
|
| 187 |
|
| 188 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
|
| 190 |
-
|
| 191 |
|
| 192 |
-
|
|
|
|
|
|
|
| 193 |
|
| 194 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 195 |
|
| 196 |
-
|
|
|
|
|
|
|
| 197 |
|
| 198 |
-
|
|
|
|
|
|
|
|
|
|
| 199 |
|
| 200 |
-
##
|
| 201 |
|
| 202 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3-0.6B
|
| 4 |
+
datasets:
|
| 5 |
+
- openai/gsm8k
|
| 6 |
+
library_name: transformers
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
tags:
|
| 9 |
+
- trl
|
| 10 |
+
- grpo
|
| 11 |
- trl-autoresearch
|
| 12 |
- qwen-grpo
|
| 13 |
+
- gsm8k
|
| 14 |
+
- reasoning
|
| 15 |
+
model-index:
|
| 16 |
+
- name: qwen-grpo-r5
|
| 17 |
+
results:
|
| 18 |
+
- task:
|
| 19 |
+
type: text-generation
|
| 20 |
+
name: Math word problems
|
| 21 |
+
dataset:
|
| 22 |
+
name: GSM8K (test)
|
| 23 |
+
type: openai/gsm8k
|
| 24 |
+
split: test
|
| 25 |
+
metrics:
|
| 26 |
+
- type: accuracy
|
| 27 |
+
value: 0.7089
|
| 28 |
+
name: accuracy (inspect_evals/gsm8k, 10-shot, greedy)
|
| 29 |
---
|
| 30 |
|
| 31 |
+
# Qwen3-0.6B + GRPO on GSM8K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
+
GRPO ([TRL](https://github.com/huggingface/trl) `GRPOTrainer`) applied to **Qwen3-0.6B**,
|
| 34 |
+
the smallest model in the Qwen3 family, with a verifiable correctness reward on GSM8K.
|
| 35 |
|
| 36 |
+
| Model | `inspect_evals/gsm8k` (full 1319, 10-shot, greedy) |
|
| 37 |
+
|---|---|
|
| 38 |
+
| `Qwen/Qwen3-0.6B` (baseline, thinking off) | 0.4754 ± 0.0138 |
|
| 39 |
+
| `Qwen/Qwen3-0.6B` (baseline, thinking on) | 0.0000 — never closes `<think>` within 2560 tokens |
|
| 40 |
+
| **`cmpatino/qwen-grpo-r5`** (this model) | **0.7089 ± 0.0125** |
|
| 41 |
|
| 42 |
+
**+23.4 points absolute / +49% relative** over the untrained baseline, for **$7.96** of GPU time.
|
| 43 |
|
| 44 |
+
## Important: this model runs in non-thinking mode
|
| 45 |
|
| 46 |
+
Its chat template is patched so the generation prompt **always** ends with an empty
|
| 47 |
+
`<think>\n\n</think>` block. Thinking mode is not available — the 0.6B model cannot finish a
|
| 48 |
+
reasoning block inside a usable token budget, and training/eval formats are kept identical
|
| 49 |
+
on purpose. Use the tokenizer that ships with this repo.
|
| 50 |
|
| 51 |
+
```python
|
| 52 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 53 |
|
| 54 |
+
m = AutoModelForCausalLM.from_pretrained("cmpatino/qwen-grpo-r5", dtype="auto", device_map="auto")
|
| 55 |
+
tok = AutoTokenizer.from_pretrained("cmpatino/qwen-grpo-r5")
|
| 56 |
|
| 57 |
+
PROMPT = """Solve the following math problem step by step. The last line of your response should be of the form "ANSWER: $ANSWER" (without quotes) where $ANSWER is the answer to the problem.
|
| 58 |
|
| 59 |
+
{q}
|
| 60 |
|
| 61 |
+
Remember to put your answer on its own line at the end in the form "ANSWER: $ANSWER" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\boxed command.
|
| 62 |
|
| 63 |
+
Reasoning:"""
|
| 64 |
|
| 65 |
+
msgs = [{"role": "user", "content": PROMPT.format(q="Natalia sold clips to 48 friends in April, and then she sold half as many clips in May. How many clips did she sell altogether?")}]
|
| 66 |
+
ids = tok.apply_chat_template(msgs, return_tensors="pt", add_generation_prompt=True).to(m.device)
|
| 67 |
+
print(tok.decode(m.generate(ids, max_new_tokens=512, do_sample=False)[0][ids.shape[-1]:]))
|
| 68 |
+
```
|
| 69 |
|
| 70 |
+
## Reward
|
| 71 |
|
| 72 |
+
The reward is a line-by-line reimplementation of the scorer the benchmark actually uses —
|
| 73 |
+
inspect_ai's `match(numeric=True, location="end")`: strip `$ , £ € * _` and trailing periods,
|
| 74 |
+
split the completion on whitespace, scan tokens in reverse, and compare the first parseable
|
| 75 |
+
number against the gold answer at 5 significant figures. It was unit-tested against the real
|
| 76 |
+
scorer before training. A second reward (weight 0.2) pays for ending on an
|
| 77 |
+
`ANSWER: <number>` line; it saturates above 0.95 within ~25 steps.
|
| 78 |
|
| 79 |
+
## Training
|
| 80 |
|
| 81 |
+
Three sequential GRPO stages on `openai/gsm8k` `main` train (zero-shot prompts, inspect's
|
| 82 |
+
`MATH_PROMPT_TEMPLATE` verbatim), **251 optimizer steps total** — about 0.55 of one epoch, so
|
| 83 |
+
no prompt is seen twice.
|
| 84 |
|
| 85 |
+
| Stage | From | Steps | lr | Rollouts × prompts / step | Temp | GPU |
|
| 86 |
+
|---|---|---|---|---|---|---|
|
| 87 |
+
| r2 | `Qwen/Qwen3-0.6B` | 77 | 3e-6 | 8 × 16 | 1.0 | L4 |
|
| 88 |
+
| r4 | `qwen-grpo-r2` | 129 | 2e-6 | 16 × 16 | 1.0 | L40S |
|
| 89 |
+
| r5 | `qwen-grpo-r4-s100` | 74 | 2e-6 | 16 × 16 | 1.15 | L40S |
|
| 90 |
|
| 91 |
+
DAPO loss, `beta=0` (no KL penalty, no reference model), rewards scaled within each rollout
|
| 92 |
+
group, truncated completions masked out, `max_completion_length` 768, vLLM colocated with the
|
| 93 |
+
trainer on a single GPU.
|
| 94 |
|
| 95 |
+
Intermediate checkpoints are published as `cmpatino/qwen-grpo-r4-s{25,50,75,100,125}` and
|
| 96 |
+
`cmpatino/qwen-grpo-r5-s60`. Full-test scores rise roughly monotonically with cumulative steps
|
| 97 |
+
(0.646 → 0.662 → 0.658 → 0.683 → 0.692 → 0.708) and then flatten: `qwen-grpo-r4-s125` scores
|
| 98 |
+
0.7081 ± 0.0125, a statistical tie with this model.
|
| 99 |
|
| 100 |
+
## Caveats
|
| 101 |
|
| 102 |
+
- The reported score is r5's **final** checkpoint, so it involves no test-set selection — but
|
| 103 |
+
r5 was *started* from `r4-s100`, picked using limit-200 test scores. Read 0.708–0.709 as one
|
| 104 |
+
plateau, not two results.
|
| 105 |
+
- No validation split was held out of GSM8K train; the eval budget went into making the
|
| 106 |
+
reported numbers full-test instead.
|
| 107 |
+
- Standard error is ±0.013, so checkpoint differences below ~0.03 are noise.
|
| 108 |
+
- Greedy decoding, single sample, canonical 10-shot `inspect_evals/gsm8k`. No self-consistency.
|
| 109 |
+
- Optimising directly against the benchmark's own scorer is deliberate here; it means the score
|
| 110 |
+
should be read as "GSM8K-shaped arithmetic reasoning", not as general math ability.
|