Alibaba's Qwen Team Releases Qwen3.8-Flash-Next: A 125B Multimodal MoE With 6B Active Parameters Previewing the Qwen4 Architecture
Qwen3.8-Flash-Next is a 125B multimodal MoE model with only 6B active parameters per token, combining a 51B N-gram embedding table and a 4B multi-token prediction module for a total of 180B parameters on disk. The architecture introduces a hybrid attention mechanism: three of every four layers use Gated DeltaNet (linear attention with fixed-size recurrent state), while the fourth uses Qwen Sparse Attention (QSA) operating at micro-block granularity with a budget of 512 blocks/2048 tokens. Traini
Analysis
TL;DR
- Qwen3.8-Flash-Next is a 125B multimodal MoE model with only 6B active parameters per token, combining a 51B N-gram embedding table and a 4B multi-token prediction module for a total of 180B parameters on disk.
- The architecture introduces a hybrid attention mechanism: three of every four layers use Gated DeltaNet (linear attention with fixed-size recurrent state), while the fourth uses Qwen Sparse Attention (QSA) operating at micro-block granularity with a budget of 512 blocks/2048 tokens.
- Training cost is reported at roughly one-ninth that of Qwen3.7-Plus, with native 262K token context extensible to 1M via YaRN, and significant serving speedups (up to 10.2× prefill and 6.6× decode at 1M tokens).
- The model achieves strong results on coding and agentic benchmarks (91.9 on LiveCodeBench v6, 73.9 on CoWorkBench, 95.7 on MathVision with code interpreter) but trails frontier reasoning models like Claude Opus 4.6 on HLE.
- Released under the qwen-community-1.0 license (not Apache-2.0), with FP8 checkpoint at 172.78 GiB requiring multi-GPU deployment (TP2 minimum on GB300, TEP8 on 8×H200).
Why It Matters
This release represents a significant architectural shift toward extreme sparsity and hybrid attention, demonstrating that large-scale MoE models can maintain competitive performance while activating only a fraction of their parameters per token — a critical step toward cost-effective deployment at scale. The reported 9× training cost reduction and multi-modal agentic capabilities signal Alibaba's strategy to make frontier-level models more accessible, though the non-Apache license and hardware requirements temper immediate self-hosting viability for smaller organizations.
Technical Details
- Architecture: 48-layer backbone with 12 × (3 × Gated DeltaNet → 1 × Qwen Sparse Attention) layout. The MoE layer contains 512 experts, activating 10 routed plus 1 shared expert per token, with expert intermediate dimension of 640. Gated Residual uses a bottleneck rank of 320 with element-wise read gates and per-branch scalar write gates across 4 parallel branches.
- N-gram Embedding: A 20,000,000-entry bigram/trigram lookup table at layer 2 provides deterministic capacity expansion; supports asynchronous prefetch to host memory (NVIDIA devices only currently).
- Training: Muon optimizer applied alongside AdamW to specific weight categories, batch-size warmup eliminated, and scaling laws refitted. The 4B multi-token prediction (MTP) module aids training efficiency.
- Deployment: FP8 checkpoint is 172.78 GiB; BF16 is 335.28 GiB. vLLM (TP2 min on GB300, TP4 recommended), SGLang, TokenSpeed, transformers serve, and llama.cpp (GGUF) are supported. Fine-tuning via Unsloth, Swift, and LLaMA-Factory.
- Context & Modes: 262,144 tokens native, 1,000,000 with YaRN. Thinking mode enabled by default with reasoning_effort (xhigh/medium/low); recommended settings are temperature 1.0/top_p 0.95 for thinking and 0.7/0.80 for instruct.
Industry Insight
- The hybrid Gated DeltaNet + Sparse Attention design offers a compelling template for balancing long-context efficiency with computational tractability; expect similar architectures to appear in subsequent open-weight releases as the community validates the approach.
- The 1/9 training cost claim, if independently verified, could redefine cost-performance expectations for large MoE models and accelerate the open-weight race — but practitioners should treat vendor-reported speedup figures cautiously until third-party benchmarks are available.
- The qwen-community-1.0 license (as opposed to Apache-2.0) and the multi-GPU deployment requirement mean this model is best suited for well-resourced teams and API integrations rather than individual researchers or small startups; commercial users must carefully review licensing terms before production use.
Disclaimer: The above content is generated by AI and is for reference only.