Update evals with proper pass@1 scores

#8
by lewtun HF Staff - opened
Files changed (1) hide show
  1. README.md +9 -6
README.md CHANGED
@@ -14,6 +14,9 @@ license: apache-2.0
14
 
15
  This is a finetune of [Qwen2.5-Math-Instruct](https://huggingface.co/Qwen/Qwen2.5-Math-7B-Instruct) on [OpenR1-220k-Math](https://huggingface.co/datasets/open-r1/openr1-220k-math) (`default` split).
16
 
 
 
 
17
  ## Quick start
18
 
19
  ```python
@@ -39,12 +42,12 @@ messages = [
39
 
40
  ## Training
41
 
42
- We train the model on the `default` split of [OpenR1-220k-Math](https://huggingface.co/datasets/open-r1/openr1-220k-math) for 3 epochs. We use learning rate of 5e-5 and extend the context length from 4k to 32k, by increasing RoPE frequency to 300k. The training follows a linear learning rate schedule with a 10% warmup phase. The table below compares the performance of OpenR1-Qwen-7B to DeepSeek-Distill-Qwen-7B and OpenThinker-7B using [lighteval](https://github.com/huggingface/open-r1/tree/main?tab=readme-ov-file#evaluating-models).
43
 
44
  You can find the training and evaluation code at: https://github.com/huggingface/open-r1/
45
 
46
- | Model | MATH-500 | AIME24 | AIME25 |
47
- | --- | --- | --- |--- |
48
- | DeepSeek-Distill-Qwen-7B | 91.6 | 43.3 | 40.0|
49
- | OpenR1-Qwen-7B | 90.6 | 36.7 | 40.0 |
50
- | OpenThinker-7B | 89.6 | 30.0 | 33.3 |
 
14
 
15
  This is a finetune of [Qwen2.5-Math-Instruct](https://huggingface.co/Qwen/Qwen2.5-Math-7B-Instruct) on [OpenR1-220k-Math](https://huggingface.co/datasets/open-r1/openr1-220k-math) (`default` split).
16
 
17
+ > [!NOTE]
18
+ > Check out [OpenR1-Distill-7B](https://huggingface.co/open-r1/OpenR1-Distill-7B) for an improved model that was trained on [open-r1/Mixture-of-Thoughts](https://huggingface.co/datasets/open-r1/Mixture-of-Thoughts) and replicates the performance of [DeepSeek-R1-Distill-Qwen-7B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-7B) across multiple reasoning domains.
19
+
20
  ## Quick start
21
 
22
  ```python
 
42
 
43
  ## Training
44
 
45
+ We train the model on the `default` split of [OpenR1-220k-Math](https://huggingface.co/datasets/open-r1/openr1-220k-math) for 3 epochs. We use learning rate of 5e-5 and extend the context length from 4k to 32k, by increasing RoPE frequency to 300k. The training follows a linear learning rate schedule with a 10% warmup phase. The table below compares the performance of OpenR1-Qwen-7B to [DeepSeek-R1-Distill-Qwen-7B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-7B) and [OpenThinker-7B](https://huggingface.co/open-thoughts/OpenThinker-7B) using [lighteval](https://github.com/huggingface/open-r1/tree/main?tab=readme-ov-file#evaluating-models).
46
 
47
  You can find the training and evaluation code at: https://github.com/huggingface/open-r1/
48
 
49
+ | Model | MATH-500 | AIME 2024 | AIME 2025 | GPQA-D |
50
+ |--------------------------|----------|-----------|-----------|--------|
51
+ | DeepSeek-Distill-Qwen-7B | 93.5 | 51.3 | 35.8 | 52.4 |
52
+ | OpenR1-Qwen-7B | 90.6 | 47.0 | 33.2 | 42.4 |
53
+ | OpenThinker-7B | 86.4 | 31.3 | 24.6 | 39.1 |