LibreYOLO Models
Collection
All LibreYOLO pretrained model weights • 88 items • Updated • 1
YOLOv7 object detector, repackaged as a LibreYOLO checkpoint for use with the LibreYOLO library.
Derived from MultimediaTechLab/YOLO — the original authors' MIT re-release of YOLOv7 (not the GPL-3.0 WongKinYiu/yolov7). Copyright (c) 2024 Kin-Yiu, Wong and Hao-Tang, Tsui. Licensed under the MIT License.
State-dict key remapping only (upstream numbered layers to LibreYOLO module names); the upstream v7.pt strict-loads with zero key mismatch. Learned parameters are unchanged. See weights/convert_yolo7_weights.py in the LibreYOLO source repository.
from libreyolo import LibreYOLO
model = LibreYOLO("LibreYOLO7b.pt")
results = model.predict("image.jpg", save=True)
MIT License. See the LICENSE and NOTICE files in this repository.