--- license: gpl-3.0 datasets: - detection-datasets/coco tags: - object detection - computer vision - machine learning - yolo - yolov8 --- ### Model Description [Ultralytics:](https://github.com/ultralytics/ultralytics/) YOLOv8 in PyTorch > ONNX > CoreML > TFLite ### Installation ``` pip install ultralytics ``` ### Yolov8 Inference ```python from ultralytics import YOLO model = YOLO('techzizou/yolov8s') model.conf = conf_threshold model.iou = iou_threshold prediction = model.predict(image, imgsz=image_size, show=False, save=False) ```