DocsQuick StartAI News
AI News3B activation parameters go head-to-head with a 27B dense model — Qwen 3.6 sets a new open-source MoE benchmark
New Model

3B activation parameters go head-to-head with a 27B dense model — Qwen 3.6 sets a new open-source MoE benchmark

2026-04-20

Alibaba open-sources **Qwen3.6‑35B‑A3B**, with a total of 35 billion parameters but only 3 billion activated. It comprehensively surpasses the previous generation in agent programming and multimodal reasoning, matches **Claude Sonnet 4.5** on certain visual tasks, and sets a new upper limit for the capability of lightweight open-source models.

Last week, Alibaba open-sourced the medium-sized model Qwen3.6-35B-A3B from its Qwen 3.6 series. In short: 35 billion total parameters, only 3 billion activated during inference, achieving or even surpassing the scores of both Alibaba’s own 27B dense model and Google’s Gemma4-31B.

This is not an incremental update. It’s a MoE (Mixture of Experts) model that directly answers a key industry question: Where is the ceiling for lightweight open‑source models?

Let’s look at the numbers first: why does 3B active parameters rival 27B?

Qwen3.6-35B-A3B adopts a Mixture of Experts (MoE) architecture. In simple terms, the model contains many groups of “expert” subnetworks, but only a small portion is activated during each inference step to handle the current task, while the rest “rest.” Hence, although it has 35 billion total parameters, only about 3 billion actually participate in computation per forward pass.

What does that mean? Significantly lower computational cost, faster inference, smaller VRAM usage—without sacrificing output quality.

Alibaba’s benchmark scores are quite persuasive:

Knowledge & Reasoning

| Benchmark | Qwen3.6-35B-A3B | Reference | |---|---|---| | MMLU-Pro | 85.2 | On par with the 27B dense model | | GPQA | 86.0 | Graduate-level Q&A | | AIME 2026 Full | 92.7 | Math competition-level reasoning | | LiveCodeBench v6 | 80.4 | Real-time coding ability |

Scores like MMLU-Pro 85.2 and GPQA 86.0 were flagship-level dense model results just a year ago. Now, a 3B-activated MoE model achieves them.

Agent Programming — The Real Trump Card

This is the most noteworthy capability of Qwen3.6-35B-A3B. Alibaba repeatedly emphasized this at launch, and benchmark data supports the claim.

On benchmarks such as Terminal-Bench2.0 (terminal programming), NL2Repo (long-form code generation from natural language into full repositories), and QwenClawBench (real-world agent capability), Qwen3.6-35B-A3B comprehensively surpasses its predecessor Qwen3.5-35B-A3B, while also outperforming Gemma4-26B-A4B and Gemma4-31B.

Some users noted the Terminal-Bench2.0 score jumped dramatically from 40.5 in the previous generation. This isn’t a marginal improvement from fine-tuning but a generational leap in architecture and training.

Multimodality: Visual Ability on Par with Claude Sonnet 4.5

Perhaps the most surprising part: a 3B-activated open-source model matching Claude Sonnet 4.5 on vision-language tasks.

Specific results:

  • MMMU: 81.7 (multimodal multitask understanding)
  • MathVista: 86.4 (math visual reasoning)
  • RealWorldQA: 85.3 (real-world visual Q&A)
  • OmniDocBench: 89.9 (document understanding)

All exceed the corresponding scores of Claude Sonnet 4.5.

It also excels at spatial intelligence: RefCOCO 92.0, ODInW13 50.8, EmbSpatialBench 84.3—showing strong understanding of object locations and spatial relationships—crucial for agent tasks handling complex imagery.

Video understanding was not neglected either: VideoMME (with subtitles) 86.6, VideoMMMU 83.7—surpassing Claude Sonnet 4.5’s 77.6.

Why MoE Is the Optimal Solution for Open Source Models

Over the past two years, the large model race followed two paths:
(1) Bigger models—more parameters, more data.
(2) Smaller models—distillation, quantization, pruning.
MoE takes a third path—keeping total parameters large but activating only a subset per inference.

This approach is especially advantageous in open-source contexts.

For developers wanting local deployment, VRAM is the bottleneck. A 27B dense model in FP16 needs ~54GB VRAM—basically two A100s or one H100. In contrast, Qwen3.6-35B-A3B, despite 35B total parameters, only activates 3B, drastically reducing inference memory and compute requirements.

In other words, you might run a model equivalent to a 27B dense one on a single consumer GPU (with appropriate quantization). That’s a big deal for indie developers and small teams.

Of course, MoE has trade‑offs: 35B total parameters means large model files, and all expert weights must load into memory (or VRAM). But given inference efficiency, that cost is acceptable.

Industry trend-wise, MoE is becoming the mainstream architecture for open-source models. Google’s Gemma4 series also follows this path (e.g., Gemma4-26B-A4B), but so far Alibaba achieves better results with the same active parameter scale.

The Agent Ecosystem: Not Just a Model, But a Practical Tool

Raw capability is one thing; usability is another. Qwen3.6-35B-A3B has made great progress in this regard.

Compatible with Major Agent Frameworks

The model natively supports three leading open‑source agent frameworks:

  • OpenClaw (formerly Moltbot / Clawdbot): a self-hosted open-source AI coding agent; connect to Bailian for full terminal agent coding experience.
  • Qwen Code: open-source AI agent optimized deeply for the Qwen series, designed for terminal use.
  • Claude Code: Bailian supports the Anthropic API protocol, allowing direct Qwen model invocation through Claude Code.

The last point deserves extra mention:
Bailian supports both OpenAI-style chat completions/responses APIs and Anthropic’s API protocol. That means you can switch existing agent workflows to Qwen3.6-35B-A3B with almost no code changes—just swap the API endpoint if you’re already using Claude Code.

Thinking vs. Non-Thinking Modes

Qwen3.6-35B-A3B supports two inference modes:

  • Thinking mode – the model performs internal reasoning before producing the final answer, suitable for complex tasks.
  • Non-thinking mode – direct output for faster responses, suitable for simple tasks.

Crucially, it supports preserve_thinking—retaining all prior reasoning across multi-turn conversations. That’s vital for agent workflows where reasoning coherence across steps matters.

Local Deployment: How to Actually Run It

Model weights are available on Hugging Face and ModelScope. It’s also accessible via Alibaba Cloud Bailian API under the name qwen3.6-flash.

For local deployment, SGLang or vLLM is recommended.
Using SGLang, the standard launch command:

# Install SGLang
uv pip install sglang[all]

# 8-way tensor parallelism, max context 262,144 tokens
SGLANG_USE_MODELSCOPE=true python -m sglang.launch_server \
  --model-path Qwen/Qwen3.6-35B-A3B \
  --port 8000 \
  --tp-size 8 \
  --mem-fraction-static 0.8 \
  --context-length 262144 \
  --reasoning-parser qwen3

To further speed up inference, enable multi-token prediction (MTP):

SGLANG_USE_MODELSCOPE=true python -m sglang.launch_server \
  --model-path Qwen/Qwen3.6-35B-A3B \
  --port 8000 \
  --tp-size 8 \
  --mem-fraction-static 0.8 \
  --context-length 262144 \
  --reasoning-parser qwen3 \
  --speculative-algo NEXTN \
  --speculative-num-steps 3 \
  --speculative-eagle-topk 1 \
  --speculative-num-draft-tokens 4

For vLLM, deployment is similar; version 0.19.0+ is recommended:

VLLM_USE_MODELSCOPE=true vllm serve Qwen/Qwen3.6-35B-A3B \
  --port 8000 \
  --tensor-parallel-size 8 \
  --max-model-len 262144 \
  --reasoning-parser qwen3 \
  --language-model-only

A context length of 262,144 tokens means you can feed an entire medium-sized code repository in a single pass—a must-have for long-range programming tasks.

My Take: The Watershed Moment for Open-Source MoE

Honestly, the release of Qwen3.6-35B-A3B has made me rethink what “small model” means.

With 3B active parameters, it traditionally counts as a “small model.” Yet its performance in programming, reasoning, and multimodality reaches the upper limits of medium-to-large dense models. This isn’t inflated benchmark theater—tests like Terminal-Bench2.0, NL2Repo, and QwenClawBench are grounded in real-world scenarios, not easily gamed.

Comparison summary:

  • vs Gemma4-31B (Google, dense): Qwen3.6-35B-A3B dominates in programming and agent tasks, at far lower inference cost.
  • vs Gemma4-26B-A4B (Google, MoE): Same MoE design, but Alibaba achieves better results with fewer active parameters.
  • vs Qwen3.5-27B (Alibaba, dense): 3B active matches 27B dense—solid proof of MoE efficiency.
  • vs Claude Sonnet 4.5 (closed-source): Parity or better in multimodal tasks—and open source vs paid closed source makes the contrast more meaningful.

Of course, benchmarks ≠ real-world experience. Actual deployment stability with long context, edge cases, and robustness still need community validation. But on paper, Qwen3.6-35B-A3B is a highly competitive candidate for a “locally deployable intelligent brain.”

For developers, its biggest value might not just be how powerful it is—but that it’s powerful and affordable at once. You no longer need a painful tradeoff between capability and cost—at least for agent programming, 3B activation is enough.

Alibaba has also hinted that the Qwen3.6 open-source family will keep expanding.
If future larger and smaller MoE variants maintain this standard, the open-source community’s toolbox for agent development will become incredibly rich.


References

Related Articles

View All

Contact Us

We usually reply quickly during business hours

Scan WeChat

Support: Hub Assistant

WeChat ID: