Definition
An open-weight model is one whose trained parameters — the billions of numeric weights that constitute the model — are published for anyone to download and run. This is the practical foundation of sovereign AI: with the weights in hand, you can run inference entirely on your own hardware, with no API key, no per-token billing, and no prompt ever leaving your machine. Llama, Mistral, Qwen, and DeepSeek releases are the best-known families, and between them they have put genuinely capable models within reach of a single workstation.
Open-weight is not open-source
The distinction matters and is routinely blurred. Open-weight means the parameters are downloadable; it does not guarantee you receive the training data, the training code, or a license permitting unrestricted use. Many “open” models ship under community licenses with usage thresholds or field-of-use restrictions, and almost none disclose their full data recipe. A fully open-source model — in the sense championed by the Open Source Initiative — would also release enough information to reproduce it: data sourcing, training code, and methodology. Most open-weight releases sit in the middle: enormously more transparent than a closed API, short of reproducible. Read the license before you build a business on a checkpoint; the weights being on your disk does not mean the terms are.
What you gain
Running open weights locally removes an entire class of dependencies. No vendor can deprecate the model out from under you, silently change its behavior, censor its outputs, raise prices, or log your queries — the checkpoint on your disk is immutable until you change it. You control the system prompt, the sampling parameters, the tokenizer pairing, and the hardware. Privacy is structural rather than contractual: prompts that never leave your network cannot be subpoenaed from a provider, leaked in a breach, or mined for training data. And the model can be modified — fine-tuning on your own documents is only possible when you hold the weights.
What you take on
The trade is the operational burden. You own VRAM sizing, quantization choices, runner updates, and security. The tooling has matured enough that this is homestead-scale work, not datacenter work: grab a checkpoint in GGUF format, load it with llama.cpp or Ollama, and a capable assistant runs on a consumer GPU. Frontier closed models still outperform what fits in a home rig — the honest comparison is capability versus control, and the gap keeps narrowing.
The sovereignty parallel
The argument for open weights is the argument for running your own node, restated one layer up: don't trust infrastructure you cannot hold, verify behavior yourself, and keep the exit door open. For those building local AI agents or private knowledge tools, open-weight models are the natural substrate — self-custody, applied to intelligence.
In Simple Terms
An open-weight model is one whose trained parameters — the billions of numeric weights that constitute the model — are published for anyone to download…
