๐ Table of Contents
- TL;DR โ The Verdict
- The Qwen 3.8 Family: 2.4T Flagship + 27B Compact
- Architecture: Gated DeltaNet Hybrid + FP8 Quantization
- Native Vision-Language: Images and Video, No Adapter
- Flexible Thinking Control: reasoning_effort & preserve_thinking
- Context & Deployment: 256K โ 1M, vLLM / SGLang / TokenSpeed
- Benchmarks: Coding, Science & Vision
- Comparison: Qwen3.6-27B vs Qwen3.8-27B vs DeepSeek V4 Flash
- Pros & Cons
- FAQ
1. TL;DR โ The Verdict
Qwen 3.8 27B is the compact dense member of Alibaba's new Qwen 3.8 generation, released as an FP8-quantized open-weight model (Apache-2.0) on August 15, 2026. It packs three things the previous generation didn't: native vision-language understanding (images and video, no external adapter), flexible thinking control (reasoning depth tunable per request), and a hybrid Gated DeltaNet + Gated Attention architecture that keeps 27B dense inference fast enough for a single GPU. Native context is 262,144 tokens, extensible to 1M via YaRN-style scaling.
Bottom line: If you want a single open-weight model that handles documents, screenshots, video frames AND long-horizon agentic coding on one GPU โ while staying Apache-2.0 for commercial use โ Qwen 3.8 27B is the most interesting compact release of 2026. It is not a frontier-reasoning replacement for the 2.4T flagship or DeepSeek V4 Pro, but it is the strongest "deploy it yourself, do everything" model at its size.
2. The Qwen 3.8 Family: 2.4T Flagship + 27B Compact
Qwen 3.8 is a two-tier generation, and understanding the split matters for picking the right model:
| Qwen3.8-2.4T-A95B | Qwen3.8-27B (FP8) | |
|---|---|---|
| Architecture | Mixture-of-Experts | Dense |
| Total / active params | 2.4T / 95B | 27B / 27B |
| Vision | Yes (via Qwen Cloud API) | Native (open weights) |
| Context | 1M (API) | 256K native โ 1M extended |
| License | Open weights (Apache-2.0) | Apache-2.0 |
| Best for | Max capability, API / big clusters | Single-GPU deployment, local vision |
The 2.4T-A95B flagship (open-sourced August 13, 2026) is notable for a different reason: it's the first time Qwen has open-weighted a model at "Qwen-Max" level โ 2.4T total parameters with 95B active, putting open-source capability in the same league as the strongest closed APIs. But a 2.4T MoE is a datacenter model. The 27B is the one most developers can actually run, and it inherits the same generation's strengths: long-context agentic work, strong coding, and โ uniquely at this size โ real vision understanding in the open weights.
3. Architecture: Gated DeltaNet Hybrid + FP8 Quantization
The 27B uses a hybrid linear-attention / softmax-attention layout that's become the 2026 pattern for long-context efficiency:
16 ร ( 3 ร (Gated DeltaNet โ FFN) โ 1 ร (Gated Attention โ FFN) )
Gated DeltaNet : 48 linear-attention heads (V) + 16 heads (QK), head dim 128
Gated Attention: 24 attention heads (Q) + 4 KV heads, head dim 256, RoPE dim 64
FFN: intermediate dim 17,408 ยท 64 layers ยท hidden 5,120
Three of every four blocks use Gated DeltaNet โ a linear (recurrent-style) attention that keeps memory cost constant as context grows โ while one block keeps full softmax attention with rotary position embeddings for precise retrieval. That mix is why 256K context is affordable on a single GPU: the linear-attention blocks scale sub-quadratically, and the softmax blocks provide the exact-recall behavior linear attention historically lacks.
The official release is fine-grained FP8 quantization with block size 128, which the Qwen team says keeps performance "nearly identical" to the original BF16 weights. FP8 at block granularity (rather than per-tensor) is the key: it preserves outlier-sensitive activations, which is where naive FP8 usually degrades. Practical effect: the whole 27B model fits comfortably in ~16GB of VRAM at FP8, which puts it on a single RTX 4090 / 3090-class GPU.
4. Native Vision-Language: Images and Video, No Adapter
This is the headline feature at this size. Qwen 3.8 27B is a causal language model with a vision encoder trained end-to-end โ not a text model bolted onto a separate captioning pipeline. It understands:
- STEM diagrams โ charts, circuit schematics, architecture diagrams (MathVision / CharXiv style tasks)
- Documents โ scanned pages, tables, forms
- Video โ hour-scale video understanding, not just single frames
For developers, the practical win is one model for the whole pipeline: OCR, image QA, screenshot-based UI debugging, and video summarization no longer require a separate vision model plus glue code. On the MathVision benchmark the 27B is competitive with models 3-10ร its size, and it beats its own predecessor Qwen3.6-27B across vision tasks by a wide margin.
5. Flexible Thinking Control: reasoning_effort & preserve_thinking
Qwen 3.8 continues the "thinking models" trend but adds controls that matter for production:
- Thinking on by default โ the model reasons before answering, which is what makes it reliable on multi-step agentic tasks.
- Disable per request โ for latency-sensitive or trivial calls, you can turn thinking off entirely and get a fast direct answer.
reasoning_effortโ tune reasoning depth from shallow to deep, the same knob DeepSeek-style models popularized.preserve_thinkingโ keep reasoning context from earlier turns in a conversation, so multi-turn agents don't re-derive the same chain of thought each time.
That last one is quietly important for agent economics: in a long agent session, re-running the same reasoning is wasted tokens. Preserving thinking context across turns is the kind of feature that only shows up in production logs, and it's a sign Qwen is building for agent harnesses, not just chat demos.
6. Context & Deployment: 256K โ 1M, vLLM / SGLang / TokenSpeed
Native context is 262,144 tokens (256K), extensible to 1,000,000 for long-horizon tasks. The released artifacts are compatible with Hugging Face Transformers, vLLM, SGLang, and TokenSpeed, so you're not locked into a proprietary runtime.
Three deployment paths, depending on your needs:
- Qwen Cloud API (coming soon) โ hosted Qwen3.8-27B with 1M context by default and official built-in tools. Zero ops, best for production teams.
- Self-host with vLLM / SGLang โ the FP8 weights run on a single 24GB-class GPU. Best for privacy-sensitive or high-volume internal workloads.
- Transformers / TokenSpeed โ for fine-tuning and experimentation. Apache-2.0 means you can fine-tune and sell derivatives without legal friction.
Note on the 1M context: the native 256K is what's guaranteed out of the box; the 1M extension is for long-horizon scenarios where the total length (including tool outputs and vision tokens) exceeds 256K. Test with your own workload before trusting 1M in production โ this applies to every long-context model, Qwen included.
7. Benchmarks: Coding, Science & Vision
Qwen's published benchmarks compare Qwen3.8-27B against its direct predecessor (Qwen3.6-27B), the stronger Qwen3.7-Plus, Muse Glimmer-30B, and Opus4.6 Max (a closed frontier model, for reference). Coverage includes:
- Coding: Agentic terminal coding, SWE-bench Pro (evaluated with the Claude Code harness for consistency), LiveCodeBench v6
- Science/reasoning: GPQA Diamond (PhD-level science), AIME-style math
- Vision: MathVision, BabyVision, CharXiv (RQ), SWE-bench Multimodal
The headline pattern: the 27B closes most of the gap to its own larger siblings on practical coding and vision tasks, while remaining dense โ meaning predictable latency and no MoE scheduling complexity. On agentic terminal coding it lands in the same band as models several times its size, which is the "wow" number for this release. On pure frontier reasoning (GPQA Diamond top tier), the 2.4T flagship and the closed frontier models still lead โ that's the honest caveat.
8. Comparison: Qwen3.6-27B vs Qwen3.8-27B vs DeepSeek V4 Flash
| Criterion | Qwen3.6-27B | Qwen3.8-27B | DeepSeek V4 Flash |
|---|---|---|---|
| Architecture | Dense (text-only) | Dense + vision encoder | MoE 284B / 13B active |
| Vision | No | Native (image + video) | No |
| Context | ~128K | 256K โ 1M | 1M |
| Quantization | BF16 | FP8 (block 128) official | โ |
| License | Apache-2.0 | Apache-2.0 | MIT |
| Deploy | Single GPU | Single GPU (16-24GB VRAM) | Cluster / API (284B) |
| Best for | Text tasks | Local vision + agentic | Scale + cost (API) |
Positioning summary: Qwen 3.8 27B is the "one model, one GPU, does everything including vision" option. DeepSeek V4 Flash (reviewed separately) wins on pure price-performance at API scale โ its 13B-active MoE is cheaper to serve at volume โ but it's text-only and needs a serious cluster if you self-host. If your workload involves screenshots, documents, or video, the Qwen 27B is the natural pick; if it's pure high-volume text via API, V4 Flash still leads on cost.
9. Pros & Cons
Strengths
- Native image + video understanding in open weights at 27B
- Official FP8 (block 128) โ runs on a single 16-24GB GPU
- Apache-2.0: commercial use and fine-tuning without friction
- 256K native context, extensible to 1M
- Thinking control (reasoning_effort / preserve_thinking) built for agents
- Broad runtime support: Transformers, vLLM, SGLang, TokenSpeed
Limitations
- Dense 27B โ not frontier reasoning; GPQA-top-tier lags the 2.4T flagship
- Qwen Cloud hosted version still "coming soon"
- 1M context is extended mode; 256K is the native guarantee
- FP8 artifacts target the quantized path โ BF16 weights are separate
- Ecosystem/tooling younger than DeepSeek's or OpenAI's
10. FAQ
Q: Can I run Qwen 3.8 27B on one GPU?
Yes โ that's the point of this release. The FP8-quantized weights (block-size 128) fit in roughly 16GB of VRAM, so a single RTX 4090 / 3090-class card or a 24GB workstation GPU is enough for inference with vLLM or SGLang. At 256K context you'll want the full 24GB and may need to watch KV cache, but day-to-day workloads run fine on 16GB+.
Q: Is Qwen 3.8 27B really "vision native"?
Yes. It's a causal language model with an integrated vision encoder, trained end-to-end on images and video. You can feed it screenshots, diagrams, scanned documents, or video and get direct answers โ no separate captioning model or adapter pipeline required.
Q: What's the difference between Qwen3.8-2.4T and Qwen3.8-27B?
The 2.4T-A95B is the MoE flagship (2.4T total / 95B active) โ first open-weight model at Qwen-Max capability level, but it's datacenter-scale. The 27B is the dense, deployable member of the same generation: same long-context and agentic improvements, plus native vision, in a package that fits one GPU. Use the 2.4T via API or a cluster when you need maximum capability; use the 27B when you need to self-host.
Q: How does thinking control work?
Thinking is on by default. You can disable it per request for fast answers, tune depth with reasoning_effort, and keep reasoning context across turns with preserve_thinking โ which cuts token waste in long agent sessions.
Q: Where can I get the weights and try it?
- Hugging Face: Qwen3.8-27B-FP8 (also on ModelScope)
- Qwen Cloud: qwencloud.com/models/qwen3.8-27b โ hosted API coming soon
- Run with vLLM / SGLang / TokenSpeed / Transformers
- Related: DeepSeek V4 Flash Review ยท ChatGPT vs Claude vs Gemini vs DeepSeek (2026)