Xiaomi Releases MiMo-V2.6-Pro-RL: 1.02T MoE Flagship

September 28, 2026

Xiaomi Releases MiMo-V2.6-Pro-RL: 1.02T MoE Flagship

At a Glance

Item Value
Repository XiaomiMiMo/MiMo-V2.6-Pro-RL
Family guide MiMo-V2.6 guide (2 articles)
Publisher guide Xiaomi (MiMo): models and licenses
Published 2026-09-22
License mit
Formats safetensors
Source type Primary source (the publisher itself)

Values determined by this site’s code at collection time. Dates are JST.

Overview

Xiaomi’s MiMo team has released the flagship model of its new-generation MiMo-V2.6 series, MiMo-V2.6-Pro-RL, on Hugging Face. Featuring 1.02T total parameters with 42B active during inference via a Mixture of Experts (MoE) architecture, it handles text, images, video, and audio in a single model with a 1M token context window. The model is released under the MIT license, allowing the weights to be used freely, including for commercial purposes.

The core theme of the series is “scaling reinforcement learning (RL) to create a system where the model continues to improve on its own." Rather than training coding, general agents, visual work, and cybersecurity separately, they are trained together in a single mixed RL stage (referred to in the model card as “You Only RL Once"). The mid-sized model in the same series, MiMo-V2.6-Flash-RL (309B total / 15B active), was released simultaneously, and our site has already covered its GGUF version in MiMo-V2.6-Flash-RL-GGUF Multimodal MoE Model: ~141GB Memory. This article covers the official Pro weights that sit above it.

Specifications

Based on the “Model Summary" and architecture table in the model card.

  • Parameter count: 1.02T total / 42B active (Sparse MoE)
  • Layer configuration: 70 layers. Of these, 60 layers use Sliding Window Attention (SWA with a 128 token window) and 10 layers use global attention (GA). The very first layer uses GA and a dense FFN, while the rest alternate between SWA and GA, both using MoE FFNs without shared experts.
  • Experts: 8 out of 384 experts used
  • Hidden layer dimension: 6,144. Attention heads use Q 128 / KV 8 for both SWA and GA, with head dimensions of QK 192 / V 128.
  • Context length: Up to 1M tokens
  • Inputs: Text, images, video, audio
  • Visual encoder: 681M parameter MiMo ViT (28 layers, of which 24 are SWA and 4 are GA)
  • Audio encoder: 308M AudioTokenizer (20-stage RVQ codebook) and 127M audio patch encoder (combining 4 frames into 1 patch, reducing 25Hz to 6.25Hz)
  • Speculative decoding: Built-in MTP (Multi-Token Prediction) drafter built with 5 SWA layers, predicting the subsequent 7 tokens in a single forward pass for parallel verification.

Compared to the mid-sized Flash, Pro scales up across every axis: layers increase from 48 to 70, hidden dimensions from 4,096 to 6,144, and experts from 256 to 384. On the other hand, Flash was trained on more pre-training tokens. According to the technical report, Flash was trained on 48T tokens (26T text, 22T multimodal), while Pro was trained on 30T tokens (27T text, 3T multimodal).

Performance

Reproduced directly from the evaluation table in the model card. Comparison targets include the Flash model from the same series, the previous-generation MiMo-V2.5 Pro, and three closed commercial models (Claude Opus 5, GPT-5.6 Sol, and Claude Fable 5), with all figures published by their respective creators (“-" indicates no result available).

→ Scroll horizontally to see all columns

Benchmark MiMo-V2.6 Pro MiMo-V2.6 Flash MiMo-V2.5 Pro Claude Opus 5 GPT-5.6 Sol Claude Fable 5
Code Agent
DeepSWE v1.1 71.9 67.9 19.0 74.0 73.0 70.0
ProgramBench 26.5 26.0 12.5 37.0 25.0 33.0
MiMo Code Bench 63.2 61.2 40.4 68.6 59.3 –
General Agent
AutomationBench v1.0.6 53.1 52.3 16.0 50.3 45.8 46.2
Toolathlon-Verified 76.9 73.6 49.1 80.6 74.9 77.9
GDPval-AA 2.1 1673 – 1107 1708 1588 1595
Agents’ Last Exam 31.6 27.6 13.2 31.6 30.8 25.7
Terminal Bench 4.0 34.9 28.8 1.5 49.0 39.9 42.4
Terminal Bench 2.1 89.9 87.6 65.2 89.1 88.8 84.3
OSWorld-Verified 82.0 80.8 – 83.4 83.0 86.0
JobBench 62.0 61.2 25.0 65.7 45.4 57.4
Cybersecurity
CyberGym 94.0 95.1 40.0 – – –
MiMo Cyber Bench 80.2 77.2 0.0 – – –
ExploitGym 17.8 6.0 0.2 22.1 30.3 28.4
ExploitBench 47.9 25.3 16.6 70.0 78.5 78.0
SEC Bench Pro 66.3 47.5 17.7 – 79.1 –
Visual Agent
MiMo VisualCoding 72.3 71.5 – 70.0 73.4 69.1

Gains over the previous generation are orders of magnitude larger. DeepSWE v1.1, which measures the ability to carry out long development tasks, rose from 19.0 to 71.9; AutomationBench, which navigates REST APIs to build business workflows, rose from 16.0 to 53.1; and the newer terminal task benchmark Terminal Bench 4.0 increased from 1.5 to 34.9. All of these are tasks that require “taking multiple steps to see a job through to completion," directly reflecting the impact of large-scale agent-oriented RL.

When compared to top commercial models, “matching areas" and “areas falling short" are clearly distinct. Terminal Bench 2.1 (89.9) for terminal operations and AutomationBench (53.1) are the highest in the table, while Agents’ Last Exam (31.6), which gathers difficult problems, ties with Claude Opus 5. DeepSWE (71.9) is only 2.1 points behind Opus 5. On the other hand, ProgramBench, which reconstructs programs from compiled binaries and documents, scores 26.5, falling more than 10 points behind Opus 5’s 37.0, and Terminal Bench 4.0 lags significantly at 34.9 versus 49.0. ExploitBench (47.9) and ExploitGym (17.8), which proceed to actual vulnerability exploitation, fall below the three commercial models in the comparison (70.0–78.5, 22.1–30.3). OSWorld-Verified (82.0), which operates screens, also trails all three commercial models (83.0–86.0), showing a 4-point gap with Claude Fable 5. The table indicates that while the capability for “diligently executing tasks with prescribed steps" matches top tiers, a gap remains in “analyzing unknown targets to create or break things anew."

The gap between Pro and Flash is small across most items. DeepSWE is 71.9 vs 67.9, Terminal Bench 2.1 is 89.9 vs 87.6, OSWorld-Verified is 82.0 vs 80.8, and JobBench is 62.0 vs 61.2, with differences within 4 points. Flash scores higher on CyberGym (95.1 vs 94.0). Substantial gaps open up in security attack-side items: ExploitBench is 47.9 vs 25.3, ExploitGym is 17.8 vs 6.0, and SEC Bench Pro is 66.3 vs 47.5, resulting in about a 3x difference in ExploitGym and roughly 1.9x in ExploitBench. Despite having over 3 times the total parameters, Flash delivers most of the performance needed for general coding and business agent use cases.

Comparison conditions require caution. MiMo Code Bench, MiMo Cyber Bench, and MiMo VisualCoding are Xiaomi’s internal benchmarks and cannot be reproduced under identical conditions by third parties. According to technical report notes, CyberGym values were measured after the publisher corrected flaws in the evaluation environment.

Strengths and Use Cases

The target indicated by the model card and technical report is to serve as the core for agent workflows involving long sequences of steps. The model card explains that the 1M token context is intended to feed entire large repositories, lengthy tool execution logs, and multi-step agent work histories all at once.

The training methodology also incorporates design choices tailored to this purpose:

  • Single Mixed RL: Coding, general agent, visual, and cybersecurity tasks, alongside multiple agent frameworks (harnesses), are mixed into the same training batch. The model card states this reinforces capabilities mutually and transfers strategies to harnesses not seen during training.
  • Large-Scale RL: Uses fully asynchronous GRPO, running 1,568 problems × 16 attempts per step. According to the technical report, a single step consumes 2.7B to 3.7B tokens.
  • Group Relative Scoring (GRS / GAR): Since binary pass/fail does not establish relative quality among successful answers, multiple answers to the same problem are compared to establish grading criteria, allocating rewards to superior answers. The model card states this steers the model toward solving tasks with shorter steps and fewer tokens.
  • Reward Hacking Countermeasures: Starting from data where the model reflects on and rewrites its own erroneous utterances, reward hacking is suppressed throughout RL via environment hardening, adversarial selection, and cross-checking verifiers.
  • MOPD2: Following mixed RL, distillation from multiple teacher models expands capabilities onto tasks where correct answers are difficult to judge mechanically.

The technical report notes that training the MoE router (the part deciding which experts to route to) during RL causes load to skew toward specific experts and destabilizes training. Consequently, MiMo-V2.6 freezes the router during RL. Publishing such failure logs is valuable for researchers attempting replication.

How It Differs from Similar Models

The MiMo-V2.6 series includes three models with different use cases:

  • MiMo-V2.6-Pro-RL (this article): 1.02T total / 42B active. The series flagship, significantly outperforming Flash particularly on security attack-side tasks.
  • MiMo-V2.6-Flash-RL: 309B total / 15B active. The model card positions this as “a checkpoint striking a balance with efficiency," and as shown in the table above, the difference from Pro remains within a few points across most items. GGUF version coverage on our site: MiMo-V2.6-Flash-RL-GGUF Multimodal MoE Model: ~141GB Memory
  • MiMo-V2.6-Distill-Qwen-9B: A smaller model obtained by further training Qwen3.5-9B on data generated by MiMo (total 77.4B tokens). The technical report describes releasing this as “a common starting point for the community to further experiment with RL." SWE-bench Pro increases from the original Qwen3.5-9B’s 32.0 to 44.6, reaching 47.6 when further trained in the published RL environment. GGUF version coverage on our site: MiMo-V2.6-Distill-Qwen-9B-GGUF Vision-Language Model: 12GB+ VRAM

Xiaomi has published not only the weights but also the RL environments used for training (approx. 3,000 coding problems, 1,000 cyber problems, 1,000 knowledge work problems, 2,000 web development problems, plus approx. 1,000 composition tasks), datasets (XiaomiMiMo/MiMo-V2.6-RL-oss), and the training framework (a fork of verl). Providing the materials to reproduce “how it was trained," rather than merely releasing open weights, is the primary distinguishing feature of this series.

How to Get It

  • Distribution format: Transformers format (safetensors) weights are hosted on Hugging Face at XiaomiMiMo/MiMo-V2.6-Pro-RL. Downloading does not require agreeing to terms of service. It is also distributed on ModelScope.
  • Example download command: huggingface-cli download XiaomiMiMo/MiMo-V2.6-Pro-RL
  • Supported engines: The model card lists SGLang and vLLM. The SGLang example uses tensor parallelism 16 across a 2-node configuration (--tp 16 --nnodes 2), enabling MTP-based speculative decoding (EAGLE). The vLLM example uses tensor parallelism 8 (--tensor-parallel-size 8) and a Docker image prepared for MiMo-V2.5 (vllm/vllm-openai:mimov25-cu129).
  • Recommended sampling settings: temperature=1.0, top_p=0.95
  • Running on local hardware: As indicated by the multi-GPU and multi-node startup examples, this is not a scale for individual hardware. For personal environments, Flash-RL’s GGUF version or Distill-Qwen-9B are realistic choices. The Pro model card does not mention llama.cpp, Ollama, or LM Studio.
  • Using as an API: According to the model card, it is also available via the Xiaomi MiMo Open Platform API and OpenRouter.

Can You Run It Locally?

Not usable in Ollama, LM Studio and llama.cpp yet — we have found no GGUF build.

The publisher ships safetensors only. However, llama.cpp’s registry does list this architecture, so conversion to GGUF is possible and the model will run once someone publishes a converted build. 5 converted build(s) from other uploaders exist. Today it can be run with transformers or vLLM, using the memory figures in the table above.

License — mit (Commercial use allowed): Permits commercial use, modification and redistribution, provided the copyright notice and license text are retained.

Compiled by this site’s code from the published formats, converted builds we have found, and each engine’s own model registry. “Not found" means we have not seen such a build, not that none exists. License summaries are not legal advice — check the publisher’s original terms before relying on them.

Quantized and Converted Variants

→ Scroll horizontally to see all columns

Added Publisher Format Repository Smallest VRAM tier (build, est. memory)
2026-09-27 mlx-community MXFP4 mlx-community/MiMo-V2.6-Pro-RL-mxfp4-q8 MLX 4bit 619.0GB (does not fit a single consumer GPU)

File sizes of each build:

  • Available builds in mlx-community/MiMo-V2.6-Pro-RL-mxfp4-q8: MLX 4bit 515.8GB

In addition, 5 converted build(s) from other uploaders exist on Hugging Face; this site lists only builds from the model’s publisher or established quantization maintainers.

This section is appended automatically by Local Model Watch when a converted build of this model appears after publication. Memory figures are estimated from the size of the distributed files. What the quantization names mean: glossary.

Related Articles

What to Read Next

Sources

Update History

  • 2026-09-27: Added converted builds to “Quantized and Converted Variants”: mlx-community/MiMo-V2.6-Pro-RL-mxfp4-q8