Publicly released model parameters that enable transparency, reproducibility, and collaborative AI development.
Open weights refers to the practice of publicly releasing the trained parameters of a machine learning model — the numerical values stored in its layers that encode everything the model has learned — so that anyone can download, inspect, run, or fine-tune the model without needing to train it from scratch. This stands in contrast to closed or proprietary models, where only an API endpoint is exposed and the underlying parameters remain hidden. The distinction matters because access to weights grants a fundamentally different level of control: users can modify the model's behavior, audit its internals, run it locally without network dependencies, and adapt it to specialized tasks through fine-tuning.
In practice, releasing open weights typically involves publishing checkpoint files alongside model architecture specifications and, ideally, details about training data and procedures. Users load these checkpoints into compatible frameworks — PyTorch, JAX, or similar — and can immediately perform inference or continue training. The computational cost of doing so is orders of magnitude lower than training from scratch, which is precisely what makes open weights so valuable: they transfer enormous amounts of learned representation to anyone with modest hardware. This has enabled a thriving ecosystem of derivative models, where community researchers fine-tune base models on specialized corpora and release their own adapted weights in turn.
The concept gained particular prominence in the large language model era, especially after Meta released the LLaMA family of models in 2023, demonstrating that competitive language models could be made openly available. This sparked significant debate about the distinction between "open weights" and true "open source" AI — the latter implying full disclosure of training data, code, and methodology, while the former covers only the parameters. Many models marketed as open are open-weights only, with training data and pipelines remaining proprietary.
Open weights matter for several interconnected reasons: they accelerate research by enabling reproducibility and benchmarking on a level playing field, they democratize access to powerful AI capabilities for organizations without massive compute budgets, and they allow independent safety researchers to probe model behavior in ways that API access alone cannot support. The tradeoff is that open weights also remove barriers to misuse, making the governance of open-weight releases an active and unresolved policy challenge.