Xiaomi · released 2026-09-22
MiMo-V2.6-Pro
What MiMo-V2.6-Pro’s own documents say it is built from — every method with the sentence that describes it.
Curator’s noteFlagship of the MiMo-V2.6 series: sparse MoE, 1.02T total / 42B active, native omnimodal (text, image, video, audio), 1M context, hybrid SWA/global attention backbone with a 5-layer MTP drafter. The release is framed around RL: one mixed asynchronous GRPO run across domains and harnesses, groupwise agentic grading (GRS, GAR), and multi-prefix multi-teacher on-policy distillation (MOPD2). MIT. Shares the launch page and technical report with V2.6-Flash — same double-mention caveat as the V2.5 pair.
Against the consensus recipe
Its documents state 3 of the 15 methods the field agrees on.
The recipe from the overview: the methods the most labs adopt, per stage. A missing one is something the documents do not say, not something the model lacks.
Data curation
- Agentic data synthesis pipelinenot in its documents
Training objective
- Multi-Token Predictionnot in its documents
- KL alignment lossnot in its documents
Model architecture
Optimization
- Muonnot in its documents
- Expert Parallelismnot in its documents
- Cosine decaynot in its documents
Post-training
- Group Relative Policy Optimizationnot in its documents
- Supervised fine-tuningnot in its documents
- Multi-Teacher On-Policy Distillationnot in its documents
Inference & serving
- Configurable reasoning effortnot in its documents
- Speculative decodingnot in its documents
- FP8 KV-cache quantizationnot in its documents
Checked in its code
Its code shows 8 of the 19 architecture features checked — 7 of them are not stated in its documents.
Documents say what a lab chose to describe; the modeling code says what the checkpoint runs. Each feature below was put to a code verifier, and only the config values and source lines it cited that were found in the files are shown, linked to the line.
Read from the model repository’s own code (modeling_mimo_v2.py, configuration_mimo_v2.py) and config.json at revision 73875d00b3, by anthropic/claude-sonnet-5 on 2026-09-25.
| Feature | Code | Its documents | Evidence |
|---|---|---|---|
| Grouped-query attention code only | in its code | not stated | 128 query heads share 8 key/value heads in full-attention layers (and 8 KV heads for the 128 SWA query heads too), implemented via repeat_kv grouping. num_attention_heads = 128num_key_value_heads = 8 |
| Multi-head latent attention | not in its code | not stated | The attention module projects q/k/v directly per head with no low-rank latent down/up projection (no kv_lora_rank/q_lora_rank in config or code). |
| Sliding-window attention code only | in its code | not stated | sliding_window is set to 128 and layers flagged 1 in hybrid_layer_pattern use is_swa attention with that window via create_sliding_window_causal_mask. sliding_window = 128hybrid_layer_pattern = [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1… |
| Interleaved sliding-window and global attention code only | in its code | not stated | hybrid_layer_pattern interleaves full-attention layers (0) with sliding-window layers (1) in a fixed repeating pattern across the 70 layers. hybrid_layer_pattern = [0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1… |
| Indexer-selected sparse attention (DeepSeek Sparse Attention) | not in its code | not stated | No indexer scoring module or top-k token selection mechanism exists in the code, and no index_topk/index_n_heads config keys are present. |
| Linear-attention or state-space layers alongside full attention | not in its code | not stated | All decoder layers use MiMoV2Attention (softmax attention, either full or sliding-window); there is no linear-attention or SSM mixer layer type. |
| Gated DeltaNet layers | not in its code | not stated | No gated delta-rule recurrent module is implemented; all token mixing is standard softmax attention. |
| Mamba-2 layers | not in its code | not stated | No Mamba-2/SSD selective state-space block is implemented anywhere in the modeling file. |
| Learnable attention sink code only | in its code | not stated | A learned per-head attention_sink_bias parameter is added as an extra logit column in the softmax denominator, enabled for both full and SWA layers via add_full_attention_sink_bias/add_swa_attention_sink_bias. add_swa_attention_sink_bias = trueadd_full_attention_sink_bias = false |
| Gated attention output | not in its code | not stated | The attention output is passed directly to o_proj with no sigmoid gating multiplication before the output projection. |
| QK normalization | not in its code | not stated | Query and key states are used directly after projection and RoPE with no RMSNorm/LayerNorm applied to them before the dot product. |
| Partial RoPE code only | in its code | not stated | partial_rotary_factor of 0.334 makes rope_dim smaller than head_dim, so RoPE is applied only to a split portion of each query/key head with the rest (query_nope/key_nope) carrying no position signal. partial_rotary_factor = 0.334rope_parameters.partial_rotary_factor = 0.334 |
| YaRN RoPE scaling | not in its code | not stated | rope_parameters/rope_type is set to "default", not YaRN, so no YaRN scaling is applied. rope_parameters.rope_type = "default"rope_parameters.type = "default" |
| Layers without positional encoding (NoPE) | not in its code | not stated | All attention layers (full and SWA) apply the same partial RoPE scheme uniformly; there is no layer-specific toggle disabling RoPE entirely for some softmax attention layers. |
| Mixture of experts | in its code | core | MoE feed-forward layers route tokens to 8 of 384 experts per token via a learned sigmoid router (MiMoV2MoEGate), active per moe_layer_freq. n_routed_experts = 384num_experts_per_tok = 8moe_layer_freq = [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1… |
| Shared expert | not in its code | not stated | n_shared_experts is null in the config and no shared-expert module is instantiated in MiMoV2MoE. n_shared_experts = null |
| Auxiliary-loss-free load balancing (selection bias) code only | in its code | not stated | The MoE gate adds e_score_correction_bias to routing scores only for top-k selection (topk_method=noaux_tc) while the actual weighting uses the unbiased sigmoid scores. topk_method = "noaux_tc" |
| Multi-token prediction layers | code unclear | core | The code has a regex to ignore loading model.mtp.* weights implying an MTP module may exist, but no MTP module is defined in the given file and no mtp layer count key is present in config.json. |
| SwiGLU feed-forward code only | in its code | not stated | Both dense and expert MLPs compute down_proj(act_fn(gate_proj(x)) * up_proj(x)) with hidden_act set to silu, giving SwiGLU. hidden_act = "silu" |
model architecture 13
token mixer 4
softmax attention 2
sliding window attention 2
channel mixer 3
prediction head 1
training objective 2
language modelling objective 1
auxiliary loss 1
optimization 8
filed at the root 1
optimizer 1
quantization-aware training 2
training stability 2
training parallelism 1
training runtime 1
data curation 9
synthetic data 3
data mixture & curriculum 5
sequence packing 1
post-training 77
supervised fine-tuning 3
reinforcement learning algorithm 17
reward modelling 14
policy distillation 6
rollout & RL infrastructure 28
agentic post-training 7
mid-training & continual pretraining 2
inference & serving 13
decoding strategy 3
reasoning control 1
KV cache management 3
inference quantization 2
serving parallelism 1
inference scheduling 1
agentic scaffolding 2
software implementation 3
inference engine 3
evaluation 5
filed at the root 3
evaluation harness 1
human & real-world evaluation 1
other 3
unfiled 10
Sources
The curated document list for this model. "not fetched" means the URL is recorded but its text was not read in the current run.
| Document | Kind | Publisher | Status |
|---|---|---|---|
| mimo.xiaomi.com/mimo-v2-6 | official blog | Xiaomi MiMo | not fetched |
| huggingface.co/XiaomiMiMo/MiMo-V2.6-Pro-RL/resolve/main/MiMo_V2_6_techn… | technical report | Xiaomi MiMo | read |
| huggingface.co/XiaomiMiMo/MiMo-V2.6-Pro-RL | model card | Xiaomi MiMo | read |
| mimo.mi.com/models/en-US/mimo-v2.6-pro | vendor docs | Xiaomi MiMo | read |
| openrouter.ai/xiaomi/mimo-v2.6-pro | vendor docs | OpenRouter | read |
| artificialanalysis.ai/models/mimo-v2-6-pro | third party analysis | Artificial Analysis | read |
| computingforgeeks.com/xiaomi-mimo-v2-6-pro-flash | third party analysis | ComputingForGeeks | read |
| venturebeat.com/technology/better-than-deepseek-xiaomis-mimo-v2-6-pro-d… | news | VentureBeat | not fetched |