Qwen3.8-9B Distill by Empero: Benchmarks and Local Setup Empero released Qwen3.8-9B Distill, a full-parameter fine-tune that transfers reasoning from the Qwen3.8 2.4T A95B teacher into the Qwen3.5-9B architecture, trained on roughly 70,000 curated chain-of-thought traces. MMLU flexible-extract accuracy jumped from 0.546 to 0.751, while GSM8K dipped slightly from 0.885 to 0.870 flexible, showing a trade-off for broad knowledge gains. The model runs on a single GPU but requires specific kernels like flash-linear-attention and a CUDA-matched causal_conv1d build. Qwen3.8-9B Distill by Empero: Benchmarks and Local Setup Empero distilled Qwen3.8's reasoning into a 9B dense model. Here's what the MMLU and GSM8K benchmarks show, and how to run it locally. What is Qwen3.8-9B Distill? Qwen3.8-9B Distill is a full-parameter fine-tune released by Empero that transfers reasoning behavior from a much larger teacher model, Qwen3.8 2.4T A95B, into the smaller Qwen3.5-9B architecture. It was trained on roughly 70,000 curated chain-of-thought traces covering math, code, general reasoning, instruction following, and tool use. The result is a 9B dense model that runs on a single GPU but scores dramatically higher on MMLU than its own base model. TL;DR Empero distilled a frontier-scale teacher, Qwen3.8 2.4T A95B, into a dense 9B student built on the Qwen3.5-9B architecture, using off-policy supervised fine-tuning rather than reinforcement learning. The training set was about 70,000 quality-filtered teacher traces , not synthetic self-generated reasoning, spanning math, code, instruction following, and tool use. MMLU accuracy jumped from 0.546 to 0.751 on flexible-extract scoring , a 20.5 point gain, with an even larger jump on strict-match 0.251 to 0.511 . GSM8K scores dipped slightly , from 0.885 to 0.870 flexible and 0.875 to 0.850 strict, showing the distillation traded a sliver of grade-school math accuracy for broad knowledge and reasoning gains. The model is a full fine-tune , meaning every parameter was updated, not an adapter or LoRA layered on top of the base. It keeps the Qwen3.5 context window of 262,144 tokens and supports native function calling without a wrapper. Running it well requires specific kernels , including flash-linear-attention and a CUDA-matched causal conv1d build, because the base architecture uses Gated DeltaNet linear-attention layers. How was the distillation built? Empero started with Qwen3.5-9B as the student architecture and Qwen3.8 2.4T A95B as the teacher. Instead of having the student generate its own rollouts and refining them through reinforcement learning, the team used off-policy distillation: they collected around 70,000 chain-of-thought traces generated directly by the teacher model, filtered them for quality, and used them as supervised fine-tuning data. The trace mix was deliberately weighted toward mathematics and competitive programming, domains where the model card notes distillation tends to produce the biggest gains at this parameter scale. Every trace includes a