For years, the prevailing wisdom in the large language model community has been a simple, linear equation: more parameters equal more intelligence. Developers and enterprises have accepted a grueling trade-off, sacrificing inference speed and VRAM efficiency to squeeze higher reasoning capabilities out of massive 70B or 175B parameter models. This reliance on sheer scale has created a bottleneck where the cost of deployment often outweighs the marginal gains in accuracy, leaving many teams trapped between the need for high performance and the physical limits of their GPU clusters.
The Architecture of Efficiency
Into this tension steps Soofi S 30B-A3B, a German-engineered open model that fundamentally challenges the correlation between model size and capability. Coordinated by the KI Bundesverband (German AI Association) and trained within Deutsche Telekom's Industrial AI Cloud, Soofi S was designed to prove that architectural intelligence can override raw parameter count. The results are stark: in both English and German benchmarks, Soofi S has outperformed established open-source heavyweights, including OLMo 3 32B and the significantly larger Apertus 70B.
The model's performance is rooted in a massive, three-stage training regimen involving 27 trillion tokens. The developers employed a strategic data ramp-up, specifically increasing the proportion of German language data from 7.2 percent in the first stage to 15.3 percent in the second. This precision tuning ensured that the model did not just translate English concepts into German, but developed a native-level grasp of the language's nuances. The dataset was a curated blend of commercial and open-source corpora, anchored by the Genios corpus—which contains 193 million news articles—and supplemented by HPLT, German Commons, FinePDFs, and FineWiki.
Technically, Soofi S adopts the Nvidia Nemotron 3 Nano structure to maximize computational efficiency. While the model possesses a total parameter count in the 30B range, it utilizes a Mixture of Experts (MoE) architecture. This means that for any given token generation, only a fraction of the network is active. Specifically, the active parameters are approximately 3 billion, effectively reducing the operational cost of a 30B-class model to that of a 3B-class model without sacrificing the knowledge capacity stored in the dormant experts.
Breaking the VRAM Bottleneck
What truly separates Soofi S from its contemporaries is not just the MoE structure, but its hybrid internal logic. The model blends Mamba-2 layers—linear models capable of processing data sequences with extreme speed—with standard Attention layers, which are essential for capturing complex contextual relationships. This hybrid approach allows the model to maintain high-level comprehension while slashing the latency typically associated with dense Transformer architectures.
The most radical optimization, however, occurs in the KV (Key-Value) cache. In standard models, the KV cache—the temporary storage that allows a model to remember previous parts of a conversation—grows linearly with sequence length, often becoming the primary memory bottleneck. Soofi S solves this by maintaining the cache in only 6 of its 52 total layers. By aggressively pruning the memory footprint of the conversation history, the model achieves a breakthrough in throughput. In a test environment with a context window of 40,000 tokens and 32 parallel requests, Soofi S demonstrated a token generation rate per GPU approximately 8 times higher than dense models in the 14B to 24B parameter range.
This efficiency translates directly into benchmark dominance. In the HumanEval coding benchmark, Soofi S scored 73.8 percent, and it reached 70.2 percent on MBPP. Its regional specialization is even more pronounced; on the German version of MBPP, it hit 84.2 percent, and on the INCLUDE-DE German regional knowledge test, it scored 61.2 points. This performance puts it in a tie for first place with the Qwen3.5 35B-A3B, despite the latter's different architectural priorities.
This success has sparked a debate regarding the Chinchilla scaling laws, which suggest an optimal ratio of training tokens to parameters (roughly 20:1). By these standards, Soofi S is drastically over-trained, with a token-to-parameter ratio that reaches thousands to one when measured against active parameters. Critics argue that the model has surpassed the point of diminishing returns. However, Michael Fromm, the technical lead for the project, argues that traditional scaling laws are designed for dense models and do not apply to MoE architectures. In an MoE system, individual experts do not see the same documents repeatedly in the same way a dense model does, meaning the learning efficiency remains high even as the token count skyrockets.
The victory of Soofi S over models like Apertus 70B is not a victory of size, but a victory of density. By minimizing the memory overhead of the KV cache and optimizing the active compute path, the model proves that the future of AI is not about how many parameters a model has, but how few it needs to use to reach the correct answer.
Industry practitioners must now shift their evaluation metrics from total parameter counts to active parameter efficiency and cache architecture to determine true GPU utility.




