Views
No views yet
| Model Version | Architecture | Status | Use Case |
|---|---|---|---|
| Basic_YOLO11_v1.pt | YOLOv11-Seg | High Accuracy | High accuracy segmentation. Best performance at Epoch 104. |
| Lite_YOLO8_v1.pt | YOLOv8-Seg | Performance/Legacy | Baseline model for performance comparison. |
| Model | mAP@0.5 (Mask) | mAP@0.5-0.95 | Precision | Recall |
|---|---|---|---|---|
| YOLOv11 | 0.56 | 0.38 | 0.49 | 0.60 |
| YOLOv8 | 0.46 | 0.33 | ~0.45 | ~0.55 |
1from ultralytics import YOLO
2
3# Load the best model
4model = YOLO("Basic_YOLO11_v1.pt")
5
6# Run inference on an image
7results = model("path/to/image.jpg")
8
9# Show results
10results[0].show()