Downloads · 30 days
0
arthors/carwin-element-detection
carwin-element-detection is a object detection model from arthors. Use it when you need objects located in an image. The card lists the license as mit.
A lightweight YOLOv5n model trained to detect interactive UI elements on desktop screens (buttons, icons, input fields, checkboxes, etc.).
Downloads · 30 days
0
Access
Public
Updated Jul 15, 2026
Repo size
22.1 MB
Likes
0
Public
Click a slice to open those files.
.pt14.6 MB · 66%
From the Hugging Face model README
A lightweight YOLOv5n model trained to detect interactive UI elements on desktop screens (buttons, icons, input fields, checkboxes, etc.).
| Metric | Value |
|---|---|
| mAP@0.5 | 0.925 |
| mAP@0.5:0.95 | 0.648 |
| Training images | 10,825 |
Deployed to ARM Cortex-A7 via NCNN INT8 quantization:
| Resolution | Inference Time |
|---|---|
| 640×640 | 6.5s |
| 320×320 | 1.6s |
| 160×160 | 370ms |
ONNX → NCNN → INT8 quantization pipeline included in the training repository.
import torch
# Load model
model = torch.hub.load('ultralytics/yolov5', 'custom', path='model.pt')
model.conf = 0.25
# Run inference
results = model('screenshot.png')
results.show()
model.pt — PyTorch weights (5.3 MB)model.onnx — ONNX export (7.5 MB, opset 12, batch=1, 640×640)Trained from yolov5n.pt pretrained weights with:
python train.py --data dataset.yaml --weights yolov5n.pt \
--epochs 200 --batch-size 64 --device 0 --imgsz 640 \
--single-cls --amp=False
MIT