• 25 Posts
  • 757 Comments
Joined 3 years ago
cake
Cake day: July 20th, 2023

help-circle

  • I think you misunderstood what “viral” mean in that context.

    If a file, under GPL, is added to a project, the whole project becomes dual licensed under the original licence plus GPL, which propagate to the whole project, like a virus. I know comparing it to something like a virus sound derogative, but this is the best way to describe its effect.

    If a file, under MPL, is added to a project, the project do not become MPL, only the added part is. Said project cannot change the MPL licensed part to another licence, but still can build anything it wish using it.

    Globally, a GPL licensed project protects the user more, but also prevent the devs from doing a lot of thing, which MPL does not.

    In the end, this is the devs freedom to chose which licence they wish to publish their code under, not ours.










  • That’s not how LLMs work either.

    An LLM had no knowledge, but has the statically probability of a token to follow another token, and given an overall context it create the statically most likely text.
    To calculate such probability as accurently as possible you need as much examples as possible, to determine how often word A follow word B. Thus the immense datasets required.
    Luckily for us programmers, computer programs are inherently statically similar, which makes LLMs quite good at it.
    Now, the programs it create aren’t perfect, but it allows to write long, boring code fast, and even explain it if you require it to. This way I’ve learned a lot of new things that I wouldn’t have unless I had the time and energy to screw around with my programs (which I wished I had, but don’t), or looked around Open Source programs source code, which would take years to an average human.

    Now there is the problem of the ethic use of AI, which is a whole other aspect. I use only local models, which I run on my own hardware (usually using Ollama, but I’m looking into NPU enabled alternatives).