# YOLOv8n Smoking Detection Model This is a fine-tuned YOLOv8n model for detecting smoking in images/videos. ## Model Details - **Base Model:** YOLOv8n - **Task:** Object Detection - **Framework:** Ultralytics YOLOv8 (PyTorch) - **Dataset:** Custom dataset with smoking and non-smoking labels. ## How to Use ```python from ultralytics import YOLO # Load the model model = YOLO("yolov8n.pt") # Run inference results = model("image.jpg") # Show results results.show()