CoolFace
Modelpublic

Enos-123/accident-evaluator-yolov8x

sourceHugging Facemitupdated 1y agoView on Hugging Face
8likes31downloads
Model Card

๐Ÿ“Œ YOLOv8x Accident Evaluator

YOLOv8x-Accident-Evaluator is a custom object detection model trained to detect road accident scenarios and severity levels using the Roboflow Accident Evaluator dataset.

๐Ÿš€ Model Details

  • โ€”Architecture: YOLOv8x (You Only Look Once, version 8, extra-large)
  • โ€”Trained by: Uppada Enos & Ultralytics Team
  • โ€”Contact: Uppada Enos
  • โ€”License: MIT

๐Ÿท๏ธ Detection Classes

  • โ€”detected-injury
  • โ€”fire
  • โ€”high severity
  • โ€”low severity
  • โ€”medium severity
  • โ€”smoke

๐Ÿงช Performance Metrics

MetricScore
mAP@0.50.697
mAP@0.5:0.950.438
Precision0.764
Recall0.646

Per-class mAP@0.5:

  • โ€”detected-injury: 0.741
  • โ€”fire: 0.611
  • โ€”high: 0.869
  • โ€”low: 0.834
  • โ€”medium: 0.795
  • โ€”smoke: 0.331

๐Ÿ“‚ Usage

python
from ultralytics import YOLO

model = YOLO("Enos-123/accident-evaluator-yolov8x")

results = model("example.jpg", imgsz=640, conf=0.25)
results.show()
results.save(save_dir="inference_output")