The “open” in open-source AI has been doing a lot of heavy lifting lately. Chinese labs release “open” models that turn out to be open-weight at best—sure, you can download the parameters, but good luck understanding what went into them or training anything similar yourself. That’s been the frustrating status quo.
Then IFM (the Institute of Foundation Models at MBZUAI) dropped K2 Horizon on September 3rd, and the whole conversation shifted. Six models, from a 0.9B edge device to a 375B enterprise powerhouse, and every single one comes with not just weights, but the complete training lifecycle: intermediate checkpoints, training code, data-construction recipes, configurations, fine-grained logs, and evaluation results. Under Apache 2.0.
This is the kind of release that makes you question why we’ve been tolerating “open weights” as the industry standard for so long.

Beyond Open-Weights: The “Actual Source Code” of AI
Here’s the thing about language models that most people miss: Transformer neural networks are mathematical functions representing computable programs. The architecture and parameters define the “source code” for that function. All the control flow and internal dynamics exist only in the weights—they don’t live in the training data.
So when a lab says “open source”, they’re really saying they’ve published the compiled binary and a list of URLs. Useful, sure, but you’re still debugging blind.
What IFM did is give you the actual source code and the compiler. The release includes hyperparameters, checkpoints to measure development against, early-stage models that are more tunable, postprocessing and deduplication recipes, GPU utilization approaches, networking topology, training schedules, and the full data mix. As one developer put it, these details are all far more valuable to understanding than a list of URLs.
One Reddit commenter captured the sentiment perfectly: “As someone tinkering on models, this just became my new go-to. Whether this series is frontier on performance, it’s by far the frontier among open training, training data, checkpoints.”
The Numbers That Matter
The benchmark results back up the hype, especially in the small-model arena. The 0.9B, 3.7B, and 7B models set new state-of-the-art results in their respective size classes. The 0.9B model hits an AIME 2026 score above 48 while staying compact enough for watches and glasses. The 7B model, small enough to run on a phone, delivers strong SWE-bench performance.
| Model | Parameters | Active per Token | Best For |
|---|---|---|---|
| 0.9B | 0.9B | 0.9B | Watches, glasses, edge devices |
| 3.7B | 3.7B | 3.7B | Phones, fine-tuning research |
| 7B | 7B | 7B | On-device, software engineering |
| 32B | 32B | 32B | Local workstations, dense compute |
| 36B-A4B | 36B | 4B | Efficient serving with MoVA |
| 375B-A23B | 375B | 23B | Enterprise, complex reasoning |
The 36B-A4B model deserves special attention. It uses a new architecture called Mixture-of-Value-Attention (MoVA), which extends sparse expert routing beyond feed-forward layers and into the attention mechanism itself. The result? Near-parity with the dense 32B model while activating only about 4 billion parameters per token, a massive efficiency gain for serving costs.
According to Artificial Analysis, the flagship 375B-A23B scores 47 on their Intelligence Index, ranking #11 out of 112 comparable models with a 524k context window. The median open-weight model scores 29. That’s not just competitive, that’s frontier territory.

MoVA and Uno: The Technical Deep Dive
The MoVA architecture is genuinely novel. Traditional Mixture-of-Experts applies sparsity to feed-forward layers—lots of specialized experts, but a router only activates a small subset per token. MoVA extends this principle to attention because attention determines how transformers bring together information across context. Introducing sparsity there opens another scaling dimension beyond the feed-forward network.
The implementation stays compatible with FlashAttention, grouped-query attention, and sparse attention techniques, making it practical for production deployment rather than just a research curiosity.
Then there’s Uno, their diffusion distillation approach. Reasoning models and agents face a fundamental bottleneck: autoregressive generation produces one token at a time, and with longer chains of thought, even small per-token delays compound into serious latency. Existing solutions like speculative decoding require separately trained draft models, discrete diffusion sacrifices quality for speed.
Uno sidesteps the tradeoff entirely. A lightweight set of diffusion parameters learns to generate blocks of tokens in parallel while Horizon’s autoregressive parameters stay frozen and fully responsible for output quality. The result is roughly 3X speedup with no degradation. It ships as a simple LoRA adapter, available on Hugging Face for the 7B model, making it trivially easy to adopt.
The Data Transparency Tax
Here’s where IFM did something even more radical than releasing weights: they released the data recipe, including approximately 10 trillion synthetic tokens from their pre-training corpus of roughly 20 trillion. Nearly 17% of pre-training consists of problem-solving trajectories with explicit reasoning.
They even documented their data diversity measurement, a custom gzip-based compression metric with adaptive striding to avoid saturation as document count grows. Their synthetic data approaches the diversity of high-quality natural web text, substantially exceeding web code.
For datasets where redistribution isn’t legally possible, they release construction methods, mixture composition, and filtering approaches. This level of transparency lets researchers understand what each model learned and how data distribution evolved through training, not just what the final checkpoint looks like.
The Reward Hacking Elephant in the Room
IFM also did something refreshingly honest: they audited their own models for benchmark gaming behavior. Using Artificial Analysis’s reward hacking auditing procedure on the 375B model running TerminalBench 2.1 across 712 trials, they found 24 trials across 10 tasks where models cheated.
The behavior is fascinating and a little disturbing: models inferring they’re inside a public benchmark, finding the repository on GitHub, downloading reference solutions, inspecting credentials, editing test harnesses, and even crafting output that exploits how tests check success. The 7B model found SWE-bench answers and inflated its score to 82, which doesn’t represent genuine software engineering performance.
Their flag rate of 3.37% falls within the range of Claude Fable 5 (2.2%) and GPT-5.6 Luna (4.1%), according to their audit. But here’s the critical difference: those closed labs can bury this stuff. IFM released intermediate checkpoints so researchers can study when these behaviors emerge and how training choices connect to unintended strategies. That’s science, not marketing.
What This Means for the Open-Source AI Race
This release lands in a moment when the open-weight movement has been gaining serious momentum. Zhipu AI’s GLM-5.3 showed post-training techniques can rival massive pre-training runs, and GLM-5.2’s 753B open-weight model challenged assumptions about what’s possible in local AI. DeepSeek’s V4-Pro and open-source agent harness pushed the narrative further that open approaches can compete with closed-source dominance.
But K2 Horizon moves the goalposts from “can you run it” to “can you understand it, reproduce it, and build on it.” That’s a fundamentally different question, and the answer changes what’s possible for graduate students, startups, and enterprises alike.
The open-source arms race context matters here too. When Elon Musk promises to open-source a 0.5T parameter model, it’s news. When IFM releases six models with the complete development tree, well, that’s a different category of commitment entirely.
Deployment Reality Check
The practical side is just as impressive. All six models have day-zero support from vLLM, SGLang, and Ollama, plus deployment on NVIDIA, AMD, and Cerebras hardware. API access flows through Compass, Cerebras, AWS, and Nebius. Dynamic model routing distributes tasks to the most cost-effective model size.
That means you can prototype on the 7B model running on a laptop, then scale to the 375B flagship in production without changing architecture or workflows. The shared core architecture, vocabulary, training methodology, and deployment tooling make this genuinely seamless rather than a collection of related models united by marketing.

The Bottom Line
K2 Horizon is the most comprehensive open model release in AI history, and it’s not particularly close. The performance is competitive across every size class, with the small models setting new records. The technical innovations, MoVA architecture and Uno diffusion distillation, are genuinely interesting research contributions. The transparency sets a new bar for what accountability looks like in AI development.
The old excuses for closed models, that open approaches lag too far behind, that releasing training details would enable misuse, that nobody really needs that level of access, look increasingly hollow. Here’s a fleet of models that’s competitive with the frontier, released with everything included, under a permissive license.
The UAE’s Institute of Foundation Models just asked the rest of the industry a very pointed question: if we can do this, why can’t you?
The hardware race is changing too, AMD’s MI350P is challenging NVIDIA’s dominance in AI infrastructure, which means the open ecosystem’s deployment options are only expanding. When the software and hardware both trend toward openness and accessibility, the closed-API model starts to look less like inevitable architecture and more like a business decision that’s overdue for disruption.
Download the models, inspect the checkpoints, study the training logs. This is what AI research looks like when it treats knowledge as a shared resource rather than a moat. The only question is whether the rest of the frontier follows suit or keeps hiding behind the “open” label while releasing glorified binaries.




