License
@StephanST
congratulations on the release!
I saw your work is based on yolov8 backbone, which has agpl3.0 license. Meanwhile you have put MIT license. How does this work?
also @StephanST would you like to build a demo for this? we can provide zero A100 grant
Hey Merve, here I am distributing the trained models and not any of the training code used to train these models. The models themselves are an output of the code and don't fall under any license other than what I put on them (MIT here).
If people wanted to get access to the training code from Ultralytics, which is under AGPL, it's public here https://github.com/ultralytics/ultralytics/ π But once again I'm not claiming ownership of that code base and nothing in this release includes code from there.
As for setting up a demo: for sure that would be cool! I'd be happy to build a little app for that so people ca play with the models.
@StephanST AFAIK if you're using an AGPL3.0 backbone (weights) your model has to be AGPL3.0 because it's a derivative work, see here the owner of YOLO is arguing that the weights are derivative work. do not get me wrong, I'm a strong advocate for open-source, it's just we wouldn't like people using this model in production to get in any trouble, hence this discussion to fix the license.
let me know when you build the demo under this thread, I'll keep an eye on it. follow the instructions here https://huggingface.co/zero-gpu-explorers (you just have to wrap a function and that's it) and I'll assign you an A100. thank you!
Oh right yeah, but I train 100% from random init and don't use any of the backbones from anyone else for this reason. Actually I have my own pre-training systems with some other datasets as well, but all 100% my work :)
I guess it's a gray area then (I saw in the model card you use YOLO backbone hence I opened this). Thanks for clarification!