File size: 1,196 Bytes
bac8498 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ---
license: other
license_name: yolo-license
license_link: LICENSE
library_name: libreyolo
pipeline_tag: object-detection
tags:
- object-detection
- yolov2
- libreyolo
---
# LibreYOLO2t
YOLOv2-tiny object detector, repackaged as a LibreYOLO checkpoint for use with the [LibreYOLO](https://github.com/LibreYOLO/libreyolo) library.
## Source
Derived from the [Darknet](https://github.com/pjreddie/darknet) project (pjreddie/darknet). Darknet is public domain (the "YOLO LICENSE"); the original `.cfg` architecture and pretrained `.weights` carry no license obligations.
## Modifications
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](https://github.com/LibreYOLO/libreyolo).
## Usage
```python
from libreyolo import LibreYOLO
model = LibreYOLO("LibreYOLO2t.pt")
results = model.predict("image.jpg", save=True)
```
## License
Public domain (Darknet "YOLO LICENSE"). See the [`LICENSE`](./LICENSE) and [`NOTICE`](./NOTICE) files in this repository.
|