Views
No views yet
| File | Base model | Size | Task |
|---|---|---|---|
yolo11x_best.pt | YOLO11x | 114 MB | Worker detection |
yolo26x_best.pt | YOLO26x | 118 MB | Worker detection |
worker (person in a factory/industrial setting)1from ultralytics import YOLO
2
3# Load either model
4model = YOLO("yolo11x_best.pt") # or "yolo26x_best.pt"
5
6# Inference on an image, video, or stream
7results = model.predict("factory_frame.jpg", conf=0.4)
8
9for r in results:
10 for box in r.boxes:
11 print(box.cls, box.conf, box.xyxy)1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4weights = hf_hub_download(
5 repo_id="etemkocaaslan/balkontech-models",
6 filename="yolo11x_best.pt",
7)
8model = YOLO(weights)| Model | mAP50 | mAP50-95 | Precision | Recall |
|---|---|---|---|---|
| yolo11x_best | 0.9512 | 0.5209 | 0.9973 | 0.9200 |
| yolo26x_best | 0.9457 | 0.5291 | 0.9683 | 0.9200 |
1@misc{balkontech-worker-detection,
2 author = {Kocaaslan, Etem},
3 title = {BalkonTech Models: Fine-tuned YOLO for Factory Worker Detection},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/etemkocaaslan/balkontech-models}}
7}