AI AI Toolkit
AI Newstip

Qwen 3.8 27B 表现出色,但默认推理强度过高导致过度思考

Simon Willison 博客2026-08-16T22:00:39.000Z

Core Highlights

Alibaba's Qwen team has released Qwen 3.8 27B, a vision-language model with 27 billion parameters that is distributed under the Apache 2.0 license. In plain terms, it is a multimodal model that can both see images and hold a natural-language conversation at the same time, and because its full weights are open, developers can download them, build commercial products on top, and modify the architecture without asking for permission. According to the official benchmark figures published alongside the release, the new model surpasses the previous-generation Qwen 3.6 27B on multiple tasks, and it even edges out Qwen 3.7-Plus, a mid-size model that Alibaba developed internally and never released to the public. That last detail is the real headline: a freely available 27B model is now beating a confidential internal one, which shows there is still meaningful headroom to squeeze out of this parameter class, the size that sits in the sweet spot between genuine capability and affordable deployment for most engineering teams.

What It Does

Qwen 3.8 27B continues the family's vision-plus-language design. You hand it an image together with some text, and it can describe what it sees, answer questions about the picture, reason through a visual puzzle, and take on agent-style multi-step tasks such as parsing a document or chaining tool calls. The detail worth pausing on is its reasoning-effort control, a setting that lets users choose how deeply the model thinks before answering, so that trivial questions get a quick reply while genuinely hard problems receive more deliberation. Simon Willison, writing up his hands-on evaluation, flags a real annoyance: the model ships with its default reasoning intensity set too high. The practical consequence is that even a simple prompt triggers a long internal chain of thought, a clear case of over-thinking that adds latency and burns tokens without improving the final answer.

Technical Details

The 27B parameter count is the whole point of the positioning. It is small enough to run on a single high-end consumer graphics card, which keeps the gap between capability and deployment cost narrow, yet large enough to stay competitive on quality. The Apache 2.0 license is what makes that attractive, because it places essentially no restrictions on commercial use, letting startups and solo developers ship without legal friction. Over-thinking, technically, is the model emitting an excessively long sequence of intermediate reasoning steps during decoding; when the default profile refuses to scale down for easy inputs, the experience feels heavy. The adjustable reasoning intensity is the escape valve engineered for exactly this, but it only helps if the user actively moves it, since the out-of-the-box setting is the over-eager one.

Comparison With Rivals

Within the open-source vision-model field at this size, Qwen 3.8 27B lands in the top tier on the published numbers, and its permissive license separates it from rivals that attach commercial clauses. Set against closed products such as GPT-4o and Claude, its advantage is the freedom to self-host and to tweak internals, privileges that matter to anyone handling sensitive data. Against other open competitors, the result is a statement that Alibaba keeps polishing the 27B class rather than abandoning it, having now beaten an internal model that never shipped. The one weak spot is onboarding: because the default reasoning policy needs manual correction, newcomers who expect sensible behavior out of the box will be surprised by the sluggish defaults.

Industry Impact and Use Cases

For builders, this is a free, commercializable, and locally deployable multimodal foundation that fits neatly into products like document understanding, image moderation, and customer-service copilots. For the broader market, it is another data point that open models are narrowing the gap with closed mid-size systems, especially in the vision-language segment where a year ago the closed labs led comfortably. The only practical caveat is one worth repeating: after you adopt the model, tune the reasoning intensity down to a sensible level, because leaving it at the default will let its habit of over-thinking cancel out the very speed and cost benefits that make a 27B model worth running in the first place, turning a model that should feel brisk into one that feels slow.

For now the takeaway is simple: a strong open model is only as good as the defaults its users are willing to tune, and Qwen 3.8 27B is a clear reminder that raw benchmark scores hide the everyday friction of actually running these systems.