Views
No views yet
question1280yolo26m+0.022 on the old test set and +0.057 on the combined test set.| Model | Size | Precision | Recall | mAP50 | mAP50-95 |
|---|---|---|---|---|---|
| YOLO11M Question Segmentation v1 | 116 MB / 20.1M params | 0.962 | 0.980 | 0.979 | 0.898 |
| YOLO26M Question Segmentation v2 | 168 MB / 21.8M params | 0.990 | 0.982 | 0.988 | 0.920 |
| YOLO26S Question Segmentation v2 | 20 MB / 9.9M params | 0.988 | 0.983 | 0.990 | 0.923 |
| YOLO26N Question Segmentation v2 | 5.3 MB / 2.5M params | 0.988 | 0.983 | 0.989 | 0.924 |
| Model | Size | Precision | Recall | mAP50 | mAP50-95 |
|---|---|---|---|---|---|
| YOLO11M Question Segmentation v1 | 116 MB / 20.1M params | 0.962 | 0.973 | 0.984 | 0.900 |
| YOLO26M Question Segmentation v2 | 168 MB / 21.8M params | 0.987 | 0.978 | 0.992 | 0.957 |
| YOLO26S Question Segmentation v2 | 20 MB / 9.9M params | 0.988 | 0.991 | 0.993 | 0.963 |
| YOLO26N Question Segmentation v2 | 5.3 MB / 2.5M params | 0.991 | 0.988 | 0.993 | 0.962 |


conf=0.001 (highest mAP50-95 on both held-out test sets).conf=0.25; use conf=0.20 if you want fewer missed borderline boxes.
1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4weights = hf_hub_download(repo_id="erayyapagci/yolo26m-question-segmentation-v2", filename="best.pt")
5model = YOLO(weights)
6results = model("page.png", imgsz=1280, conf=0.25)1from ultralytics import YOLO
2
3model = YOLO("https://huggingface.co/erayyapagci/yolo26m-question-segmentation-v2/resolve/main/best.pt")
4results = model("page.png", imgsz=1280, conf=0.25)CC-BY-4.0.