Views
No views yet
Architecture-only weights. These weights are randomly initialised (nc=1, class "object"). They produce no meaningful predictions out of the box. Fine-tune on your own labelled data before deploying. See the LibreYOLO training guide for instructions.
| Size | Input | Grid | Parameters |
|---|---|---|---|
| l | 224×224 | 28×28 | ~297 KB |
1from libreyolo import LibreFOMO
2
3# Load architecture weights (random init — fine-tune before use)
4model = LibreFOMO("LibreFOMOl-point.pt")
5
6# Fine-tune on your data
7model.train(data="your_data.yaml", allow_experimental=True)LICENSE file in this repository.