Submitted by murphwalker t3_1258kp5 in MachineLearning
Lightning AI released Lit-LLaMa: an architecture based on Meta’s LLaMa but with a more permissive license. However, they still rely on the weights trained by Meta, which have a license restricting commercial usage.
Is developing the architecture enough to change the license associated with the model’s weights?
currentscurrents t1_je34ui9 wrote
This is code for running the LLaMa model, sort of like llama.cpp.
It's a reimplementation of Facebook's original GPL-licensed open source client under a more permissive Apache license. The GPL requires all your other code to also be GPL, so you can't use it in closed-source projects.
This doesn't affect the license for the model weights, which you will still have to download from somewhere else.