| ▲ | noodletheworld an hour ago | |||||||
> And most importantly, you modify the work just like the creators modify the work Emphasis mine. Weights are not open source. You can define terms to mean whatever you want, but fundametally if you cannot modify the “output” the way the original creators could, its not in the spirit of open source. Isnt that literally what you said? How can you possibly claim both that a) you can modify it the creators did, b) thats all you need to be open source, but… Also c) the categorically incorrect assertion that the weights allow you to do this? Whatever, I guess, but your argument is logically wrong, and philosophically flawed. | ||||||||
| ▲ | NitpickLawyer 41 minutes ago | parent [-] | |||||||
> Weights are not open source. If they are released under an open source license, they are. I think you are confusing two concepts. One is the technical ability to modify weights. And that's what the license grants you. The right to modify. The second is the "know-how" on how to modify the weights. That is not something that a license has ever granted you. Let me put it this way: ```python THRESHOLD = 0.73214 if input() < THRESHOLD:
else:
```If I release that piece of code under Apache 2.0, you have the right to study it, modify it and release it as you see fit. But you can not have the right (at least the license doesn't deal with that) to know how I reached that threshold value. And me not telling you does not in any way invalidate the license being Apache 2.0. That's simply not something that licenses do. In LLMs the source is a collection of architecture (when and how to apply the "ifs"), inference code (how to optimise the computation of the "ifs") and hardcoded values (weights). You are being granted a license to run, study, modify and release those hardcoded values. You do not, never had, never will in the scope of a license, get the right to know how those hardcoded values were reached. The process by which those values were found can be anything from "dreamt up" to "found via ML". The fact that you don't know how those values were derived does not in any way preclude you from exercising the rights under the license. | ||||||||
| ||||||||