Views
No views yet
| Metric | Score |
|---|---|
| mAP@0.5 | 0.697 |
| mAP@0.5:0.95 | 0.438 |
| Precision | 0.764 |
| Recall | 0.646 |
1from ultralytics import YOLO
2
3model = YOLO("Enos-123/accident-evaluator-yolov8x")
4
5results = model("example.jpg", imgsz=640, conf=0.25)
6results.show()
7results.save(save_dir="inference_output")