File size: 511 Bytes
43f57f3
 
 
 
73cb57e
43f57f3
 
73cb57e
 
 
 
 
 
fd54e1f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
tags:
- model_hub_mixin
- pytorch_model_hub_mixin
pipeline_tag: object-detection
---

# LeYOLO

### LeYOLO Large weights - HuggingFace integration

Github: https://github.com/LilianHollard/LeYOLO

Paper: https://arxiv.org/abs/2406.14239

Minimal example:

```
#clone github
#inside LeYOLO folder, load LeYOLO weights (nano, small, medium or large)
model = YOLO.from_pretrained("lhollard/leyolo-large")
#use ultralytics CLI and Python tools
results = model.val(data="ultralytics/cfg/datasets/coco8.yaml")
```