Views
No views yet
| Model | KMAPPs* | M Parameters | mAP50-95 (640x640) |
|---|---|---|---|
| YOLOv8n (baseline) | 21.5 | 3.16 | 37.3 |
| yolov8n_pruned_59 (ours) | 12.6 (59%) | 2.00 (63%) | 33.3 (↓ 4) |
KMAPPs(model) = FLOPs(model) / (H * W * 1000), where (H, W) is the input resolution.pip bypip install torch-dag# Make sure you have git-lfs installed (https://git-lfs.com)
git lfs install
git clone https://huggingface.co/TCLResearchEurope/yolov8n_pruned_59import torch_dag
import torch
model = torch_dag.io.load_dag_from_path('./yolov8n_pruned_59')
model.eval()
out = model(torch.ones(1, 3, 224, 224))
print(out.shape)