this post was submitted on 26 Jul 2026
216 points (99.1% liked)

Technology

86633 readers
3513 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] yesman@lemmy.world 10 points 17 hours ago (2 children)

is their a meaningful difference between open weight and open source?

[–] herrvogel@lemmy.world 23 points 17 hours ago (1 children)

Pretty big difference. An open weight model is a model that you can run on your own machine. You just download and it's yours to host and use. You don't need to have anyone host it on their own backend for you, the entire model is available to you to do that on your own. What you don't have is any control over or access to anything related to how the model was trained. You don't know what kind of data they used to train it, and how exactly they used that dataset. If you did, that'd be an open source model.

[–] phil@lemmy.openitco.de 2 points 2 hours ago (1 children)

Very important point, i think many people are mislead by the word "open". Is there any "open source model" around?

[–] late_pessimistic@slrpnk.net 1 points 19 minutes ago

There might be, but very few. Most (like gpt-oss, or Deepseek R1) are open weight, because no one wants to make their model training data public.

Open sourcing a model would likely give away they are using pirated content or scrap internet websites without permission. That's something Anthropic was fined for last year, they were caught using pirated books for model training.

Moreover, training data is one of most lucrative resources in AI race next to GPUs, and AI companies are going all in on finding it, desperately fighting for any possible data. Heck recently they even started buying antique books, digitizing, and burning them.

They invest a whole lot of resources to get quality data, and they don't want to share it with competitors for free.

My personal opinion though is FOSS philosophy doesn't apply that cleanly to LLMs anyway. If compiling Chromium or Linux kernel from source is tedious enough, "compiling" an LLM from source on consumer hardware is straight impossible. It's something only your competitors could do.

Thus you can't verify the LLM is the same as it's source code anyway, so open source label becomes meaningless.

And open weight model is still an improvement over using a cloud model, as it's local and doesn't call home with your chats data.

[–] melfie@lemmy.zip 4 points 13 hours ago

Open weight is analogous to a compiled binary. Similar to how Windows is closed source, but still runs in your own hardware, whereas Linux is truly open source.