This model is associated with the paper:
Rethinking On-Policy Distillation of Large Language Models: Phenomenology, Mechanism, and Recipe
Paper link:
https://arxiv.org/abs/2604.13016
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "lllyx/Qwen3-4B-Base-GRPO"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 torch_dtype="auto",
9 device_map="auto",
10)
1@article{li2026rethinking,
2 title={Rethinking On-Policy Distillation of Large Language Models: Phenomenology, Mechanism, and Recipe},
3 author={Li, Yaxuan and Zuo, Yuxin and He, Bingxiang and Zhang, Jinqian and Xiao, Chaojun and Qian, Cheng and Yu, Tianyu and Gao, Huan-ang and Yang, Wenkai and Liu, Zhiyuan and Ding, Ning},
4 journal={arXiv preprint arXiv:2604.13016},
5 year={2026}
6}