Module FTDD-08 — Qwen3

Qwen3

The hybrid thinking/non-thinking pipeline reference. One set of weights serves a deliberate reasoner and a fast assistant, fused via a thinking-budget mechanism that adapts compute to the question.

45
minutes
8
artifacts
4
sub-sections
Qwen3 is the production workhorse of the open reasoning ecosystem and the other canonical reference alongside DeepSeek-R1. Where R1 teaches distillation, Qwen3 teaches fusion: a four-stage post-training pipeline that merges a thinking model and a non-thinking model into one, controlled by a thinking budget that spends tokens only when the question warrants them. Trained on 36T+ pretraining tokens, it is the model most teams actually deploy.
Key Claims
Load-Bearing Claims

Qwen3 fuses thinking and non-thinking into one model. Stage 3 of the pipeline merges a long-CoT reasoning model with a fast non-thinking model, producing a single set of weights that can do both. This is the key difference from R1, which ships a dedicated reasoner. One model, two modes.

The thinking budget is adaptive compute. A parameter sets how many thinking tokens the model may spend. Low budget = fast, direct answers. High budget = long deliberation. This lets a single deployment serve a chatbot and a math-solver without swapping weights.

The four-stage post-training mirrors and extends R1. Long-CoT cold start → reasoning RL (GRPO-style) → thinking-mode fusion → general RL. The fusion stage is the novel contribution; it is what makes Qwen3 a hybrid rather than a pure reasoner.

36T+ pretraining tokens make it a capable base. Qwen3's pretraining scale (across the family, 0.6B to 235B-A22B MoE) is why the fused model stays strong in non-thinking mode — it did not sacrifice general capability to gain reasoning. This is why it is the deployed workhorse.

After This Module
01
Explain why Qwen3's thinking-mode fusion (Stage 3) is the key innovation over a dedicated reasoner like R1 — one set of weights serves both a deliberate reasoner and a fast assistant.
02
Draw the four-stage Qwen3 post-training pipeline (long-CoT cold start → reasoning RL → thinking-mode fusion → general RL) and state what each stage contributes.
03
Describe the thinking-budget mechanism and predict, for a given query, how a low versus high budget changes latency, token spend, and answer quality.
04
Distinguish Qwen3 from R1 as the two canonical reasoning references: Qwen3 for adaptive in-weights compute in a production hybrid, R1 for distillation from a teacher.
Artifacts