File size: 649 Bytes
f13a6bc
 
8d5729a
 
 
 
 
 
 
 
f13a6bc
551d076
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c6b5007
551d076
 
 
8d5729a
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
31
32
33
34
35
36
37
38
---
license: gpl-3.0
datasets:
- detection-datasets/coco
tags:
- object detection
- computer vision
- machine learning
- yolo
- yolov8
---
---
tags:
  - object-detection
  - computer-vision
  - yolov8
datasets:
  - detection-datasets/coco
---

### 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)
```