LibreYOLO Models
Collection
All LibreYOLO pretrained model weights • 80 items • Updated • 1
YOLOv3 object detector, repackaged as a LibreYOLO checkpoint for use with the LibreYOLO library.
Derived from the Darknet project (pjreddie/darknet). Darknet is public domain (the "YOLO LICENSE"); the original .cfg architecture and pretrained .weights carry no license obligations.
The Darknet .weights binary was converted to a LibreYOLO v1.0 checkpoint (a state-dict mapping into the native LibreYOLO module graph). Learned parameters are unchanged. See weights/convert_darknet_weights.py in the LibreYOLO source repository.
from libreyolo import LibreYOLO
model = LibreYOLO("LibreYOLO3b.pt")
results = model.predict("image.jpg", save=True)
Public domain (Darknet "YOLO LICENSE"). See the LICENSE and NOTICE files in this repository.