Dev & Code Aug 14, 2026Add to bookmarks

Alibaba releases Qwen 3.8 27B in open weights on Hugging Face—claimed to be the best dense local model to date. What this concretely means for your local inference setups, and why it deserves attention.
Since Meta popularized open weights models with LLaMA, the competition for the best locally executable dense model has intensified. Alibaba has just scored a significant point with Qwen 3.8 27B—version 3.8 of its Qwen family (千问, Thousand Questions), released as open weights on Hugging Face.
Qwen (pronounced “tsyen”) is Alibaba Cloud’s LLM (Large Language Model) family. The 3.8 version with 27 billion parameters is available in FP8 (8-bit floating point) quantization, making it operable on consumer GPUs with sufficient VRAM.
The dense classification contrasts this model with MoE (Mixture of Experts) architectures like Mixtral or some Qwen MoE models: a dense model activates all of its parameters with every inference. This is more predictable and consistent in performance but more demanding in VRAM.
To run Qwen 3.8 27B in FP8 locally, you’ll need roughly 28–30 GB of VRAM—accessible on professional hardware (A6000, H100 80 GB) or dual-GPU setups for enthusiasts. With Q4_K_M (4-bit quantization), that drops to about 14–16 GB, fitting an RTX 3090 or 4090.
# Via Ollama if the model is packaged
ollama run qwen3.8:27b
# Via llama.cpp with the quantized GGUF file
./llama-cli -m qwen3.8-27b-q4_k_m.gguf \
-ctx-size 8192 \
-p "Explain ring signatures in cryptography" Qwen models have consistently outperformed their Western counterparts of similar size on code and mathematical reasoning benchmarks. If independent evaluations confirm the claim of “best local dense model,” Qwen 3.8 27B becomes a serious alternative to:
One caveat: the license. The Qwen family typically uses a Qwen License derived from Apache 2.0, with commercial restrictions beyond a certain user threshold. Check the Hugging Face README before deploying in production.
An MoE model activates only a fraction of its parameters per token—more efficient for inference but capabilities may vary across domains. A dense model is more consistent, at the cost of higher VRAM usage.
Article produced by artificial intelligence, reviewed under human editorial control.