A minimalist server rack in a clean data centre corridor, cool blue lighting, representing efficient AI model architecture.
News

Alibaba's Qwen Team Quietly Previewed the Qwen4 Architecture in a 6B-Active Model

Alibaba's Qwen team released a 125B model that activates just 6B parameters per token. It previews the Qwen4 architecture — and beats models 4x its size on coding benchmarks.

AlibabaQwenQwen3.8-Flash-NextAI ModelsOpen Weights

Alibaba’s Qwen team released Qwen3.8-Flash-Next on 26 August, and the model is doing something unusual: it’s a 125-billion-parameter model that activates only 6 billion parameters per token. The release serves as an architectural preview of Qwen4 — the same role Qwen3-Next played for the Qwen3.5 series — and the early benchmark numbers suggest the efficiency gains are real.

Four Architectural Changes

The Qwen blog post breaks the upgrades into four areas: attention, residual, embedding, and optimization.

Attention uses a GDN + QSA hybrid. Gated DeltaNet (GDN) compresses historical information into a fixed-size state across three of every four layers, while the fourth layer uses Qwen Sparse Attention (QSA) for global retrieval. QSA works by compressing the sequence into micro-blocks, estimating importance at the block level, then selecting relevant regions for attention. The result: at 1 million tokens, QSA’s attention kernel achieves up to 7.6x speedup in prefill and 4.9x in decode.

Residual introduces Gated Residual (GR), which widens the single residual stream into four parallel branches. Each branch can be dynamically read from and written to, which the team says strengthens cross-layer information flow and training stability. One branch naturally emerged as a long-range pathway connecting the first attention layer to most subsequent layers during training.

Embedding adds 51 billion parameters of N-gram Embeddings on top of the 125B main model. These look up local context patterns — common phrases, local structures — and can be stored in host memory rather than GPU memory, asynchronously prefetched during computation. The key advantage: a large capacity increase with almost no additional per-token compute.

Optimization uses the Muon optimizer, with refinements to orthogonalization accuracy, the division of labour between Muon and AdamW, and parameter splitting for fused operations. The team refit the scaling law for the new architecture and found the model can use larger learning rates and batch sizes. They also discovered that batch size warmup — a standard practice in large-scale training — actually hurt results, requiring 18.8 per cent more optimizer steps for no gain.

The Performance Numbers

With 6B activated parameters, Qwen3.8-Flash-Next-Base achieves the best result on 8 of 14 base model benchmarks, including MMLU-Pro, SuperGPQA, BBH, GSM8K, EvalPlus, and SWEBench-Pretrain. On the instruction-tuned side, it scores 62.5 on SWE-bench Pro (beating Claude Opus 4.6 Max at 53.4), 58.7 on DeepSWE 1.1, and 91.9 on LiveCodeBench v6.

The comparison to Qwen3.7-Plus is telling. Qwen3.7-Plus has 397B total parameters with 17B active. Qwen3.8-Flash-Next has 125B total with 6B active — roughly one-third the parameters and one-third the activation. Yet it outperforms Qwen3.7-Plus on coding, agentic tasks, and instruction following. Training takes about one-ninth as much compute.

That ratio — better performance at a fraction of the cost — is the same pattern we’re seeing across the Chinese AI sector. GLM-5.3-Flash, released the same day, achieves similar cost-efficiency gains through a different architectural path. The convergence is not coincidental. Everyone has read the scaling laws and is now competing on efficiency rather than raw scale.

What the Qwen4 Preview Means

Qwen3.8-Flash-Next is not Qwen4. It’s a research preview — the architectural changes released early so the community can examine them before the full Qwen4 family builds on top. The Qwen team did the same thing with Qwen3-Next, whose Gated DeltaNet + Gated Attention design was subsequently used across Qwen3.5, 3.6, 3.7, and 3.8.

The implication is that Qwen4 will use the GDN + QSA hybrid, Gated Residual, N-gram Embedding, and the Muon optimizer as its foundation. If the scaling holds, Qwen4 could deliver substantial capability gains while keeping inference costs low — the same cost-efficiency frontier that GLM-5.3-Flash and DeepSeek V4 Flash are also pushing.

Production Availability

The production version of the model is served as Qwen3.8-Flash on QwenCloud, priced at $0.16 per million input tokens and $0.47 per million output tokens. It ships with 1M context by default and built-in tool calling. Open weights are available on HuggingFace and ModelScope.

At that price point, Qwen3.8-Flash sits between GLM-5.3-Flash ($0.075/$0.25 promotional) and models like Claude Opus 4.8. The competition is not between Chinese and Western models — it’s between Chinese models, each trying to offer more intelligence per dollar.

What This Means for New Zealand

The Qwen and GLM releases landing on the same day illustrates the cadence problem for anyone building AI strategy around a single provider. Two frontier-tier efficient models shipped within hours of each other, both with open weights, both targeting the same cost ceiling. For NZ organisations, the practical question is shifting from “which model do we standardise on” to “how quickly can we switch between them.”

The open-weight availability means teams with data sovereignty requirements can self-host either model on a single GPU with quantisation. The 6B active parameter count for Qwen3.8-Flash-Next makes it particularly suitable for local deployment — a model that outperforms 397B predecessors while activating fewer parameters than many consumer-grade models.

❓ FAQ

What is Qwen3.8-Flash-Next?

It’s a 125B-parameter multimodal MoE model with 6B active parameters per token, released by Alibaba’s Qwen team as a preview of the architecture that will power Qwen4.

Is it open weight?

Yes. Weights are available on HuggingFace and ModelScope. The production version is served as Qwen3.8-Flash on QwenCloud.

How does it compare to GLM-5.3-Flash?

Both target the same cost-efficiency frontier with different architectures. GLM-5.3-Flash uses linear + sparse attention with 18B active parameters; Qwen3.8-Flash-Next uses GDN + QSA with 6B active. GLM-5.3-Flash is cheaper at current promotional pricing ($0.075/$0.25 vs $0.16/$0.47 per million tokens).

What is the Muon optimizer?

Muon is an optimizer that uses matrix orthogonalization for parameters acting as two-dimensional linear maps. The Qwen team refined it for large-scale training, finding it allows larger learning rates and eliminates the need for batch size warmup.

🔍 THE BOTTOM LINE

Two efficient frontier models from two Chinese labs, released the same day, both open-weight, both beating models many times their size on benchmarks. The efficiency frontier is where the real competition is happening now. Qwen3.8-Flash-Next previews an architecture that could define Qwen4 — and it does so with fewer active parameters than many models that run on a laptop.

📰 Sources

Sources: Qwen Blog, HuggingFace, Marktechpost, Artificial Analysis