CoolFace
Modelpublic

Thinking-Space/UltraData-IF-1.5B

sourceHugging Faceotherupdated 23d agoView on Hugging Face
0likes467downloads
Model Card

<h1 align="center">UltraData-IF-1.5B</h1>

<div align="center" style="line-height: 1;"> <a href="https://arxiv.org/pdf/2609.04172"><img src="https://img.shields.io/badge/paper-A42C25?style=for-the-badge&amp;logo=arxiv&amp;logoColor=white" alt="Paper"></a>&nbsp;&nbsp; <a href="https://github.com/Thinking-Space/One-Shot-OPD"><img src="https://img.shields.io/badge/One--Shot--OPD-000000?style=for-the-badge&amp;logo=github&amp;logoColor=white" alt="GitHub"></a>&nbsp;&nbsp; <a href="https://huggingface.co/papers/2609.04172"><img src="https://img.shields.io/badge/HF--Paper-%23FFD14D?style=for-the-badge&amp;logo=huggingface&amp;logoColor=black" alt="Hugging Face Paper"></a>&nbsp;&nbsp; <a href="https://huggingface.co/collections/Thinking-Space/one-shot-opd"><img src="https://img.shields.io/badge/Collection-%23FFD14D?style=for-the-badge&amp;logo=huggingface&amp;logoColor=black" alt="Hugging Face Collection"></a> <a href="https://x.com/HBX_hbx/status/2095716853196747175"><img src="https://img.shields.io/badge/Twitter-%23000000.svg?style=for-the-badge&logo=x&logoColor=white" alt="X Thread"></a> </div>

UltraData-IF-1.5B is an RL-trained instruction-following model initialized from DeepSeek-R1-Distill-Qwen-1.5B and trained on the instruction-following subset of openbmb/UltraData-SFT-2605.

This model is associated with the paper: Rethinking On-Policy Distillation of Large Language Models II: One Training Example

Model Description

UltraData-IF-1.5B serves as the teacher model for the instruction-following experiments in our paper. It is paired with DeepSeek-R1-Distill-Qwen-1.5B to study on-policy distillation in the instruction-following domain. The two models share the same architecture, tokenizer, and chat template, allowing token-level distillation without cross-model-family mismatch.

Key characteristics

  • —Precision: bfloat16
  • —Vocabulary size: 151,936
  • —Layers / hidden size: 28 / 1536
  • —Attention heads: 12 query / 2 key-value (GQA)
  • —Context length: 131,072 positions in config.json; tokenizer model_max_length is 16,384

Training Details

ItemValue
Training algorithmGRPO
Training setUltraData-SFT-2605
RewardFraction of satisfied instruction constraints
Prompt batch size32
Rollouts per prompt8
Rollouts per step256
Learning rate1e-6
Sampling temperature / top-p0.9 / 0.95
Max prompt / response length2,048 / 14,336
KL regularizationNone
GRPO clipping0.20 / 0.28
Entropy bonus0.0
Loss aggregationtoken-mean
Training steps600
Training frameworkveRL
Hardware8 GPUs

Evaluation

Scores for this checkpoint as the instruction-following teacher, alongside the student it is distilled into. Multi-IF is averaged over its eight languages; IFBench follows the standard prompt-level and instruction-level, strict and loose breakdown.

BenchmarkDeepSeek-R1-Distill-Qwen-1.5B (Student)**UltraData-IF-1.5B (teacher)**
Multi-IF, 8-lang, final turn20.8428.58
Multi-IF, 8-lang, 3-turn mean28.5640.39
Multi-IF, English, final turn24.7135.54
Multi-IF, English, 3-turn mean30.5145.05
IFBench, prompt-level strict10.3317.00
IFBench, prompt-level loose15.0022.00
IFBench, instruction-level strict12.7918.90
IFBench, instruction-level loose19.1924.71

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "Thinking-Space/UltraData-IF-1.5B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
)

messages = [{"role": "user", "content": "Write a haiku about distillation. Use exactly three lines."}]
inputs = tokenizer.apply_chat_template(
    messages,
    add_generation_prompt=True,
    return_tensors="pt",
).to(model.device)

outputs = model.generate(inputs, max_new_tokens=2048)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))

Citation

If you use this model, please consider citing:

bibtex
@article{fu2026rethinking,
  title={Rethinking on-policy distillation of large language models ii: One training example},
  author={Fu, Zixuan and He, Bingxiang and Zuo, Yuxin and Huang, Haohuan and Zhang, Jinqian and Xiao, Ruhang and Qian, Cheng and Luo, Qinyu and Gao, Huan-ang and Wang, Yudong and others},
  journal={arXiv preprint arXiv:2609.04172},
  year={2026}
}