Views
No views yet
| Model Name | Parameters | Base Model | Hugging Face Link |
|---|---|---|---|
DistilQwen-ThoughtX-7B | 7B | Qwen2.5-7B-Instruct | Link |
DistilQwen-ThoughtX-32B | 32B | Qwen2.5-32B-Instruct | Link |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "alibaba-pai/DistilQwen-ThoughtX-7B" # or 32B
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto")
6
7prompt = "Solve ∫x e^x dx. Show your reasoning step-by-step."
8inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
9outputs = model.generate(**inputs, max_new_tokens=256)
10print(tokenizer.decode(outputs[0], skip_special_tokens=True))| Model | AIME2024 | MATH500 | GPQA-D | LiveCodeBench V2 |
|---|---|---|---|---|
| DeepSeek-R1-Distill-7B | 57.3 | 89.6 | 47.3 | 48.4 |
| DistilQwen-ThoughtX-7B | 56.7 | 90.2 | 50.0 | 56.8 |
| DeepSeek-R1-Distill-32B | 74.7 | 90.0 | 62.4 | 72.3 |
| DistilQwen-ThoughtX-32B | 80.0 | 92.6 | 64.0 | 73.4 |
1@misc{cai2025reasoningomnithoughtlargecot,
2 title={Reasoning with OmniThought: A Large CoT Dataset with Verbosity and Cognitive Difficulty Annotations},
3 author={Wenrui Cai and Chengyu Wang and Junbing Yan and Jun Huang and Xiangzhong Fang},
4 year={2025},
5 eprint={2505.10937},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2505.10937}
9}