File size: 535 Bytes
d09533e
 
7217557
 
d645a7e
 
 
 
 
 
 
 
89f1b19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: mit
language:
- en
datasets:
- garythung/trashnet
- Zesky665/TACO
- detection-datasets/coco
tags:
- computer-vision
- yolov8
- segmentation
---

### 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('turhancan97/yolov8-segment-trash-detection')
prediction = model.predict(image, imgsz=image_size, show=False, save=False)
```