Views
No views yet

| Model | GSM8K (ACC) | IFEval (I-Strict) | TruthfulQA | Winogrande |
|---|---|---|---|---|
| Qwen3-4B | 93.78 | 87.04 | 66.71 | 76.01 |
| GoT-R1-4B (Ours) | 95.07 | 90.53 | 84.70 | 81.93 |
| Qwen3-8B | 94.62 | 90.46 | 74.42 | 80.58 |
| GoT-R1-8B (Ours) | 96.74 | 92.31 | 84.82 | 84.77 |
| Qwen3-14B | 96.59 | 91.26 | 77.72 | 86.19 |
| GoT-R1-14B (Ours) | 97.19 | 92.59 | 85.31 | 87.69 |
transformers library.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "MYTH-Lab/GoT-R1-8B" # Choose 4B, 8B, or 14B
4
5tokenizer = AutoTokenizer.from_pretrained(model_name)
6model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto")
7
8prompt = "Carly collected 7 starfish with 5 arms each and one seastar with 14 arms. How many arms do the animals she collected have in total?"
9messages = [
10 {"role": "user", "content": prompt}
11]
12
13text = tokenizer.apply_chat_template(
14 messages,
15 tokenize=False,
16 add_generation_prompt=True
17)
18
19inputs = tokenizer(text, return_tensors="pt").to(model.device)
20outputs = model.generate(
21 **inputs,
22 max_new_tokens=4096,
23 temperature=0.9
24)
25
26print(tokenizer.decode(outputs[0], skip_special_tokens=True))1@inproceedings{gotr1_2026,
2 title={GoT-R1: Internalizing Graph-of-Thought via Structural Reinforcement for High-Density Reasoning},
3 author={Li, Zuchao and Li, Qiwei and Yao, Yao and Zhao, Hai and Zhang, Lefei and Du, Bo},
4 booktitle={Findings of the Association for Computational Linguistics: ACL 2026},
5 year={2026},
6 note={To appear}
7}