Views
No views yet
| Subdirectory | Base Model | Method | Steps | Key Results |
|---|---|---|---|---|
sft-dr1-7b-final | DeepSeek-R1-Distill-Qwen-7B | SFT | 3651 | GSM8K 83.5% baseline |
grpo-topoprm-dr1-7b | DeepSeek-R1-Distill-Qwen-7B | GRPO+TopoPRM | 100 | Hierarchical reward |
grpo-topoprm-qwen35-9b | Qwen3.5-9B | GRPO+TopoPRM | 50 | GSM8K 93.5%, MATH500 49.8% |
opd-topoprm-dr1-7b-v2 | DeepSeek-R1-Distill-Qwen-7B | OPD Stage3 | 200 | MATH500 60.8%, Omni-MATH 56.9% |
opd-topoprm-qwen35-9b-v2 | Qwen3.5-9B | OPD Stage3 | 50 | Distillation |
grpo-scae-qwen35-9b | Qwen3.5-9B | GRPO+SCAE | 949 | SCAE variant |
1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base_model = AutoModelForCausalLM.from_pretrained("deepseek-ai/DeepSeek-R1-Distill-Qwen-7B")
5model = PeftModel.from_pretrained(base_model, "rwlinno/topoprm-ckpts", subfolder="grpo-topoprm-dr1-7b")
6tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/DeepSeek-R1-Distill-Qwen-7B")1@inproceedings{topoprm2026,
2 title={Topology-Aware Process Rewards for Verifiable Mathematical Reasoning},
3 author={Weilin Ruan},
4 booktitle={Proceedings of EMNLP 2026},
5 year={2026}
6}