PhyseaWiki How AI actually works Papers physea.ai →

Licensing & open weights

What can you legally do with a model you downloaded?

What you may legally do with a downloaded model depends entirely on its license. Read it first: it sets the rules for commercial use, fine-tuning, attribution, and the model's outputs.

Last updated 2026-06-15 · Physea Labs

Having the weights on your disk does not tell you what you are allowed to do with them. The license does. Before you build anything, read it, because the answers vary from “almost anything” to “ask permission first.”

A few questions are worth asking of every license. Can you use it commercially? Under MIT you can, including inside paid closed-source products.[1] Can you fine-tune it? Permissive licenses let you modify freely; restricted ones may attach conditions, such as Llama’s rule that a model trained from it carries “Llama” in its name.[2] Is there a usage cap? Llama’s license requires very large products, above 700 million monthly active users, to get separate permission from Meta.[2] What about attribution? MIT asks only that you keep the notice;[1] Llama asks you to display “Built with Llama.”[2]

One thing weights alone cannot give you is the right to retrain from scratch or fully audit the model, because the training data and code are usually not included.[3] So “I have the weights” is not the same as “I can reproduce or deeply inspect this model.”

If in doubt Find the LICENSE file shipped with the model and read it, or check the model’s page on Hugging Face. For high-stakes or large-scale use, have a lawyer confirm the terms before you ship.

Where to check a model's license

  • Hugging Face model cards

    Each model page lists its license and links the full text; many gated models show the license before you can download.

  • choosealicense.com

    Plain-language summaries of common software licenses, including MIT and Apache 2.0, with their permissions and conditions.

  • Open Source Initiative

    The stewards of the Open Source AI Definition and the body that decides what counts as an open source license.

References

  1. MIT License — choosealicense.com
  2. Llama 3.1 Community License Agreement — Meta
  3. Open Weights: not quite what you've been told — Open Source Initiative