File size: 545 Bytes
e1d0eec 8b014d4 e1d0eec 8b014d4 6bccbbc 8b014d4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
---
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/yolov8m')
model.conf = conf_threshold
model.iou = iou_threshold
prediction = model.predict(image, imgsz=image_size, show=False, save=False)
``` |