ModelHub XC 2530a26207 初始化项目,由ModelHub XC社区提供模型
Model: IIGroup/X-Coder-RL-Qwen2.5-7B
Source: Original Platform
2026-06-18 12:20:13 +08:00

license, base_model, datasets, language, tags
license base_model datasets language tags
apache-2.0
IIGroup/X-Coder-SFT-Qwen2.5-7B
IIGroup/X-Coder-RL-40k
en
code
rl
competitive-programming

X-Coder-RL-Qwen2.5-7B

X-Coder-RL-Qwen2.5-7B is a strong code reasoning foundation model trained with RLVR on fully synthetic rl data, achieving strong reasoning performance on competitive programming.

Model Description

Training

This model was trained using the X-Coder RLVR framework. For training details and code, please refer to the X-Coder GitHub repository.

Performance

Performance on LiveCodeBench v5.

Results

Parameter Value
temperature 0.6
top_p 0.95
top_k 20 (or -1 to disable)
max_new_tokens 32768

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "IIGroup/X-Coder-RL-Qwen2.5-7B"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto")

prompt = "Write a Python function to solve the two sum problem."
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(
    **inputs,
    max_new_tokens=32768,
    temperature=0.6,
    top_p=0.95,
    top_k=20,
    do_sample=True
)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Citation

@misc{wu2026xcoderadvancingcompetitiveprogramming,
      title={X-Coder: Advancing Competitive Programming with Fully Synthetic Tasks, Solutions, and Tests}, 
      author={Jie Wu and Haoling Li and Xin Zhang and Jiani Guo and Jane Luo and Steven Liu and Yangyu Huang and Ruihang Chu and Scarlett Li and Yujiu Yang},
      year={2026},
      eprint={2601.06953},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2601.06953}, 
}

License

This project is licensed under the Apache License 2.0.

Description
Model synced from source: IIGroup/X-Coder-RL-Qwen2.5-7B
Readme 9.8 MiB
Languages
Text 100%