Views
No views yet
| Metric | Value |
|---|---|
| Precision | 85.62% |
| Recall | 76.92% |
| mAP@0.5 | 82.90% |
| mAP@0.5:0.95 | 44.69% |
Evaluated on a custom Roboflow dataset using YOLOv11 medium variant trained for optimal balance of accuracy and speed.
cigarette1from ultralytics import YOLO
2
3model = YOLO("path/to/best.pt") # Replace with your model path1results = model("your_image.jpg", save=True)
2results.show()1results = model("your_video.mp4", stream=True)
2for r in results:
3 r.show()model.export(format="onnx")