Thrillcrazyer commited on
Commit
76d15d5
·
verified ·
1 Parent(s): af867d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -50
README.md CHANGED
@@ -1,5 +1,4 @@
1
  ---
2
- base_model: deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
3
  datasets: DeepMath-103k
4
  library_name: transformers
5
  model_name: Qwen-7B_THIP
@@ -10,60 +9,30 @@ tags:
10
  licence: license
11
  ---
12
 
13
- # Model Card for Qwen-7B_THIP
14
 
15
- This model is a fine-tuned version of [deepseek-ai/DeepSeek-R1-Distill-Qwen-7B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Qwen-7B) on the [DeepMath-103k](https://huggingface.co/datasets/DeepMath-103k) dataset.
16
- It has been trained using [TRL](https://github.com/huggingface/trl).
 
 
 
 
17
 
18
- ## Quick start
19
 
20
- ```python
21
- from transformers import pipeline
22
 
23
- question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
24
- generator = pipeline("text-generation", model="Thrillcrazyer/Qwen-7B_THIP", device="cuda")
25
- output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
- print(output["generated_text"])
27
- ```
 
28
 
29
- ## Training procedure
30
 
31
- [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/pthpark1/THIP_DISTILL/runs/aws51kw2)
32
 
 
33
 
34
- This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
35
-
36
- ### Framework versions
37
-
38
- - TRL: 0.24.0
39
- - Transformers: 4.57.1
40
- - Pytorch: 2.8.0+cu128
41
- - Datasets: 4.2.0
42
- - Tokenizers: 0.22.1
43
-
44
- ## Citations
45
-
46
- Cite GRPO as:
47
-
48
- ```bibtex
49
- @article{shao2024deepseekmath,
50
- title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
51
- author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
52
- year = 2024,
53
- eprint = {arXiv:2402.03300},
54
- }
55
-
56
- ```
57
-
58
- Cite TRL as:
59
-
60
- ```bibtex
61
- @misc{vonwerra2022trl,
62
- title = {{TRL: Transformer Reinforcement Learning}},
63
- author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
64
- year = 2020,
65
- journal = {GitHub repository},
66
- publisher = {GitHub},
67
- howpublished = {\url{https://github.com/huggingface/trl}}
68
- }
69
- ```
 
1
  ---
 
2
  datasets: DeepMath-103k
3
  library_name: transformers
4
  model_name: Qwen-7B_THIP
 
9
  licence: license
10
  ---
11
 
12
+ <h1 align= "center"> Reasoning-Aware GRPO using Process Mining </h1>
13
 
14
+ <p align="center">
15
+ <a href="https://pnubaelab.github.io/"><b>BAELAB</b></a>, Pusan National University, Busan, Korea
16
+ </p>
17
+ <p align="center">
18
+ Taekyhun Park<sup>*</sup> , Yongjae Lee<sup>*</sup>, Hyerim Bae<sup>&dagger;</sup>
19
+ </p>
20
 
 
21
 
 
 
22
 
23
+ <p align="center">
24
+ <a href="https://github.com/Thrillcrazyer/THIP"><b>🌟 Github</b></a> |
25
+ <a href="https://huggingface.co/Thrillcrazyer/Qwen-1.5B_THIP"><b>📥 1.5B Download</b></a> |
26
+ <a href="https://huggingface.co/Thrillcrazyer/Qwen-1.5B_THIP"><b>📥 7B Download</b></a> |
27
+ <a href="https://arxiv.org/abs/2510.25065"><b>📄 Arxiv Paper Link</b></a> |
28
+ </p>
29
 
30
+ # Abstract
31
 
32
+ Reinforcement learning (RL)-based post-training has been crucial for enabling multi-step reasoning in large reasoning models (LRMs), yet current reward schemes are typically outcome-centric. We propose **PM4GRPO**, a reasoning-aware Group Relative Policy Optimization (GRPO) that augments standard answer/format rewards with signals over the reasoning procedure. To this end, process mining techniques are utilized to compute a scalar conformance reward that measures how closely a policy model's reasoning aligns with the pretrained teacher model. The empirical results on five benchmarks demonstrate that **PM4GRPO** significantly outperforms existing methodologies for GRPO-based post-training. These results highlight that leveraging process mining for reasoning-aware GRPO effectively enhances the reasoning capabilities of policy models.
33
 
34
+ # Illustration of PM4GRPO
35
 
36
+ <div align="center">
37
+ <img src="https://arxiv.org/html/2510.25065v1/x1.png" width="600"/>
38
+ </div>