SoTA Feed — Every open-weights release from the labs that matter

Ad: Read SoTA Feed without this slot — ad-free site plus a personal ad-free feed URL $3/month

MiMo-V2.6-Distill-Qwen-9B

Sep 21, 2026 · Xiaomi MiMo · view on Hugging Face ↗
18.8 GB · 9.4B dense

MiMo-V2.6-Distill-Qwen-9B

MiMo-V2.6-Distill-Qwen-9B is a 9B agentic model developed by Xiaomi MiMo through supervised fine-tuning of Qwen3.5-9B on MiMo-generated data. It covers coding, general-purpose agent tasks, visual coding, and cybersecurity. We release this SFT checkpoint as a starting point for open research in agentic reinforcement learning.

Evaluation

Results for the released SFT checkpoint, as reported in the MiMo-V2.6 technical report.

DomainBenchmarkMetricQwen3.5-9BMiMo-V2.6-Distill-Qwen-9B (SFT)
CodeSWE Verifiedavg@360.061.1
CodeSWE Proavg@332.044.6
CodeMiMo Code (mini)†avg@319.551.6
CyberMiMo Cyber (mini)†avg@35.731.3
GeneralAutomationBench v1.0.6avg@15.030.3
GeneralTerminal Bench 2.1avg@127.037.1
GeneralToolathlon-Verifiedavg@125.935.2
GeneralOfficeQAavg@19.019.5
GeneralJobBenchavg@12.618.3
GeneralMiMo General (mini)†avg@128.562.2
VisualMiMo Visual Coding (mini)†avg@161.764.0

† Internal evaluation sets.

Training Data

The weighted SFT data mixture contains 77.4B total tokens, including 27.2B loss-bearing tokens.

DomainTotal tokens (B)Token share (%)Loss-bearing tokens (B)
Code23.229.97.3
Cyber11.014.24.8
General22.028.55.7
Visual21.227.49.4
Total77.4100.027.2

Quickstart

For text generation, use a recent SGLang build with Qwen3.5 support. The checkpoint includes its tokenizer and MiMo v2.6 chat template.

sglang serve \
  --model-path XiaomiMiMo/MiMo-V2.6-Distill-Qwen-9B \
  --reasoning-parser mimo \
  --host 0.0.0.0 \
  --port 30000

Query the endpoint with thinking explicitly enabled:

from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:30000/v1",
    api_key="EMPTY",
)

response = client.chat.completions.create(
    model="XiaomiMiMo/MiMo-V2.6-Distill-Qwen-9B",
    messages=[
        {"role": "user", "content": "What is 15% of 240?"}
    ],
    max_tokens=2048,
    extra_body={"chat_template_kwargs": {"enable_thinking": True}},
)

message = response.choices[0].message
print("Thinking:", getattr(message, "reasoning_content", "") or "")
print("Answer:", message.content or "")

Citation

@misc{mimo2026v26,
  title={MiMo-V2.6: Scaling Reinforcement Learning Towards Self-Improvement},
  author={{Xiaomi MiMo Team}},
  year={2026},
  howpublished={\url{https://huggingface.co/XiaomiMiMo/MiMo-V2.6-Pro-RL}},
}

← all releases