Glossary
Open weights
Open weights describes a model whose trained parameters are published for anyone to download and run on their own hardware, rather than being usable only through the provider's own service.
In plain terms
A finished model is, in the end, a very large file of numbers. Publishing it means anyone can download that file and run it on machines they control, without asking permission and without sending anything back to the company that built it. Keeping it back means the only way to use the model is through that company's service, on their terms.
Why it matters
Where the model file sits decides who sees your data, what happens if a provider changes its terms, and whether a system you depend on can be taken away. Downloadable weights answer all three at once: the material never leaves your hardware, the version you tested is the version you keep, and no pricing change or discontinued product can strand you. The cost is that running it becomes your problem, and the strongest models in any given month are usually still the ones you cannot download.
How it works
Training produces a set of parameters, often called weights: the numbers that encode everything the model learnt. Publishing them means placing that file where anyone can fetch it, under a licence that says what they may do with it. What is published is the trained result, not the recipe. The training data, the code that did the training and the runs that were discarded along the way usually stay with the company.
Running downloaded weights needs somewhere to run them. In practice that means either a machine with enough memory and a capable graphics processor, or rented hardware, plus software that knows how to load the file and serve requests against it. Quantisation is the common accommodation: storing the numbers at lower precision so a model fits on smaller hardware, at some cost to quality.
Licences differ and are the part most easily skipped. Some published weights carry genuinely permissive terms. Others restrict commercial use above a certain size, forbid particular applications, or require attribution. The word open in the name is a description of availability, not a promise about what the licence permits, so the licence is worth reading before a plan depends on it.
Open weights and closed weights coexist inside a single company's range, and frequently inside a single product name. A provider may publish some model families while keeping its current flagship closed and available only through an interface. The family name on the label therefore tells you very little; which specific models are downloadable is the question.
What openness actually means, end to end
Seen in the wild
Install a local runner, pull a published model, and have it serving on your own machine behind a standard interface, with nothing leaving the hardware.
OllamaDo the same through a desktop application instead of a command line, where downloading and running published models happens through visible controls.
LM StudioRead a model family's page and notice which part is downloadable: one widely used line publishes weights you self-host while its current flagship stays closed and reachable only through an interface.
QwenSelf-host published weights when your own data rules stop you sending information to a provider's hosted service, so the privacy decision and the capability decision stop being the same decision.
DeepSeek
Common misconceptions
People assume
Open weights means open source.
In fact
They answer different questions. Open weights is about the trained file being downloadable. Open source is about source code being published under a licence permitting reuse. A model can have downloadable weights while its training data, training code and even the application you run it in stay closed, and that combination is the common case rather than the exception.
People assume
Open weights means free.
In fact
The download usually costs nothing. Running it does not. Hardware capable of serving a large model, or the rented equivalent, is a real and continuing cost, as is the person who keeps it working. For light use, a hosted service is often cheaper than self-hosting; the case for weights is control, not price.
People assume
Published weights are always the provider's best model.
In fact
Usually they are not. Providers commonly publish capable earlier or smaller families while the current flagship stays closed. The practical pattern is a downloadable model as the daily workhorse with a closed one retained for the hardest problems, rather than one replacing the other.
Telling them apart
Open weights vs Open source
Open weights
The trained parameter file is published for download. Says nothing about the code, the training data, or the licence terms attached.
Source code is published under a licence allowing anyone to read, modify and redistribute it. Says nothing about whether any model file comes with it.
Ask what has actually been released. A downloadable model file is open weights. Readable, modifiable code is open source. Some things are both, many are one, and a tool that runs open models can itself be closed software.
Open weights vs Self-hosted
Open weights
A property of the model: its parameters are published and can be downloaded by anyone.
A property of your deployment: the software runs on machines you control rather than a provider's.
Open weights is what makes self-hosting a model possible. It does not mean you are doing it, and plenty of people use published weights through somebody else's hosted service.
Questions
- What is the difference between open weights and open source?
- Open weights means the trained model file is published and downloadable. Open source means source code is released under a licence permitting reuse and modification. Most downloadable models publish the weights while keeping training data and training code private, so they are open weights without being open source in the usual sense.
- Do I need my own hardware to use open weights?
- Not necessarily. You can run downloaded weights on rented hardware, or use a hosted service that serves the same published model. Owning the machine is one way to get the privacy benefit, not the only way. If nothing may leave your premises, then yes, the hardware has to be yours.
- Are open-weight models less capable than closed ones?
- Generally they trail the strongest closed models of the same moment, and the gap has narrowed considerably. For a great deal of everyday work the difference does not show. The honest way to decide is to test both on your own tasks rather than on published scores, because the gap varies enormously by task.
- Can I use open-weight models commercially?
- Often yes, but it depends entirely on the licence attached to that specific release. Some are permissive, others restrict commercial use above a size threshold, forbid certain applications, or require attribution. Read the licence for the exact model and version before building anything that would be expensive to unwind.
Key takeaways
- Open weights means the trained model file is published for anyone to download and run.
- It is not the same as open source: training data and code usually stay private.
- The benefit is control over data, versions and continuity, not a lower bill.
- Licences vary and set what you may actually do, so read the one attached to the release.
- A provider publishing some models does not mean its strongest model is downloadable.
Tools that use this
- Ollama
The common way to pull published weights and serve them locally.
- LM Studio
The same thing through a desktop interface, and itself proprietary software.
- Qwen
A family where the open-weight line and the closed flagship sit under one name.
- DeepSeek
Published weights that let self-hosters separate the privacy question from the capability one.
Last checked July 2026