Qwen

Intermediate3 min

Apache 2.0, over 100 languages, dense and mixture-of-experts across a wide size range. Why tokenizer coverage shows up in your bill.

#providers
#open-weights

Where Qwen sits among open-weight families

Qwen is Alibaba's open-weight family. Weights are published on Hugging Face and ModelScope, so you can download them, run them on your own hardware, and keep a version that does not change underneath you.

Two things distinguish it from its peers in ways that survive a release cycle: unusually broad language coverage, and a permissive license.

What the family covers

The family spans a wide size range, from models small enough for a laptop to ones that need a cluster, and it publishes both dense models and mixture-of-experts architectures. A mixture-of-experts model activates a fraction of its parameters per token, so its total size and its cost to run are different numbers, which matters when you are sizing hardware.

Two behavior modes are published: thinking models that work through a problem before answering, and instruct models for general chat and direct tasks. That mirrors the split OpenAI's families draw between reasoning and general models, and the trade is the same. Thinking models spend tokens and time to get multi-step problems right.

Coding and agent use, including tool calling, are stated focus areas.

The family is several generations in and will move again, so version numbers here would date quickly. Check the model card for the current release; the shape is what lasts.

Multilingual coverage as the reason to look

The family advertises support for over 100 languages and dialects, with multilingual instruction following called out as a strength.

If your users write in languages other than English, that is the reason to evaluate Qwen before the more familiar Western open families. Coverage is where open models differ most and where benchmark summaries help least, since a general leaderboard position says little about how a model handles Vietnamese support tickets.

There is a cost consideration that connects to it. Tokenizers fragment unfamiliar scripts more aggressively, so the same sentence costs more tokens in some languages than others. A model trained with broader language coverage tends to tokenize those languages more efficiently, which shows up in both the context window and the bill. Stop estimating tokens covers why that ratio moves.

Apache 2.0, and why to check anyway

The open-weight models are released under Apache 2.0. That is a standard permissive license: commercial use, modification and redistribution, with an attribution requirement and a patent grant.

This is worth stating because it is not the norm. Several prominent open-weight families ship under bespoke community licenses with user-count thresholds, acceptable-use terms, or naming requirements, and a license written by a vendor's legal team needs reading rather than skimming.

Check it anyway, for two reasons. Licenses change between releases, so the terms on the generation you are downloading are the ones that bind you. And a repository is not always what it claims: quantized copies and fine-tunes published by third parties inherit their base model's terms, and reading the model card is how you find out what a given repository contains.

Evaluating Qwen on your own task

Leaderboard positions among frontier open models change with every release, and they are measured on tasks that are not yours.

The approach that survives: keep your model call behind an interface, build an evaluation set from your own inputs, and run candidates through it. Switching between open models is cheap when your code does not assume one, which is the real benefit of the open-weight ecosystem. LLM evaluations covers building the set, and self-hosted models covers what running one commits you to.

Further reading

Knowledge check

Question 1 of 3

What licence do Qwen's open-weight models carry, and why should you still check?

Sign in to save your progress and pick up where you left off.

Open this article on its own page