fc417fc802 6 days ago

Unclear exactly what you're asking. The linked paper describes an algorithm (patent status unclear). That paper happens to link to a GPL licensed implementation whose authors explicitly solicit business licensing inquiries. The related model weights are available on Hugging Face (license unclear). Notably the HF readme file contains conflicting claims. The metadata block specifies apache while the body specifies GPL.

https://github.com/AILab-CVC/YOLO-World

https://huggingface.co/spaces/stevengrove/YOLO-World/tree/ma...

2
sigmoid10 6 days ago

The paper says it is based on YOLOv8, which uses the even stricter AGPL-3.0. That means you can use it commercially, but all derived code (even in a cloud service) must be made open source as well.

kouteiheika 6 days ago

They probably mean the algorithm, but nevertheless the YOLO models are relatively simple so if you know what you're doing it's pretty easy to reimplement them from scratch and avoid the AGPL license for code. I did so once for the YOLOv11 model myself, so I assume any researcher worth their salt would also be able to do so too if they wanted to commercialize a similar architecture.

sigmoid10 5 days ago

You don't just need to reimplement the architecture (which is trivial even for non-researcher level devs), you need to re-train the weights from scratch. According to the legal team behind Yolo, weights (including modifications via fine tuning) fall under the AGPL as well and you need to contact their sales team for a custom license if you want to deviate from AGPL.

kouteiheika 4 days ago

At least for the Ultralytics YOLO models this is also relatively easy (I've done it too). These models are tiny by today's standards, so training them from scratch even on consumer hardware is doable in reasonable time. The only tricky part is writing the training code which is a little more complicated than just reimplementing the architecture itself, but, again, if a random scrub like me can do it then any researcher worth their salt will be able to do it too.

sigmoid10 4 days ago

You don't just need the training algorithm, but also the training data. Which in turn might have additional license requirements.

kouteiheika 4 days ago

AFAIK their pretrained models just use publicly available datasets. From their README:

> YOLO11 Detect, Segment and Pose models pretrained on the COCO dataset are available here, as well as YOLO11 Classify models pretrained on the ImageNet dataset.

fc417fc802 6 days ago

I assume they refer to the academic basis for the algorithm rather than the implementation itself.

Slightly unrelated, how does AGPL work when applied to model weights? It seems plausible that a service could be structured to have pluggable models on the backend. Would that be sufficient to avoid triggering it?

jimmydoe 6 days ago

Does GPL still mean anything if you can ask AI to read from code A and reimplement into code B?

fc417fc802 6 days ago

The standard for humans is a clean room reimplementation so I guess you'd need 2 AIs, one to translate A into a list of requirements and one to translate that list back into code.

But honestly by the time AI is proficiently writing large quantities of code reliably and without human intervention it's unclear how much significance human labor in general will have. Software licensing is the least of our concerns.

msgodel 6 days ago

If that's legal then copyright is meaningless which was the original intention of the GPL.

MoonGhost 5 days ago

So, uncopyrightable AI generated code is actually a good thing from open source community standpoint?

fc417fc802 5 days ago

Presumably depends on the impacts. It's an ideology that seeks user freedom. If you need access to the source code to use as a template that clearly favors proprietary offerings. But if you can easily clone proprietary programs that would favor the end user.

dragonwriter 5 days ago

How would this kind of mechanical translation fail to be a violation of copyright?