Files
OpenR1-Qwen-3B-SFT-Instruct/README.md
ModelHub XC 1ced5ad63e 初始化项目,由ModelHub XC社区提供模型
Model: InfiniAILab/OpenR1-Qwen-3B-SFT-Instruct
Source: Original Platform
2026-05-24 03:15:17 +08:00

1.8 KiB

base_model, datasets, library_name, model_name, tags, licence
base_model datasets library_name model_name tags licence
Qwen/Qwen2.5-3B-Instruct open-r1/OpenR1-Math-220k transformers OpenR1-Qwen-3B-SFT-Instruct
generated_from_trainer
open-r1
trl
sft
license

Model Card for OpenR1-Qwen-3B-SFT-Instruct

This model is a fine-tuned version of Qwen/Qwen2.5-3B-Instruct on the open-r1/OpenR1-Math-220k dataset. It has been trained using TRL.

Quick start

from transformers import pipeline

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?"
generator = pipeline("text-generation", model="ZMC2019/OpenR1-Qwen-3B-SFT-Instruct", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])

Training procedure

Visualize in Weights & Biases

This model was trained with SFT.

Framework versions

  • TRL: 0.16.0.dev0
  • Transformers: 4.49.0
  • Pytorch: 2.5.1
  • Datasets: 3.3.2
  • Tokenizers: 0.21.0

Citations

Cite TRL as:

@misc{vonwerra2022trl,
	title        = {{TRL: Transformer Reinforcement Learning}},
	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édec},
	year         = 2020,
	journal      = {GitHub repository},
	publisher    = {GitHub},
	howpublished = {\url{https://github.com/huggingface/trl}}
}