Smart Traffic Vision YOLOv8
This model is a YOLOv8 object detection model fine-tuned for smart traffic vision applications. It detects vehicles, pedestrians, and traffic signs in street and traffic images.
Model Details
- Model Type: YOLOv8
- Task: Object Detection
- Domain: Traffic and Street Scenes
Intended Use
This model is intended to be used in conjunction with the Smart Traffic Vision Hugging Face Space.
Usage in Python
from ultralytics import YOLO
from huggingface_hub import hf_hub_download
model_path = hf_hub_download(repo_id="emreyoleridev/smart-traffic-vision-yolov8", filename="best.pt")
model = YOLO(model_path)
results = model("path/to/image.jpg")