turhancan97
commited on
Commit
•
89f1b19
1
Parent(s):
d645a7e
Update README.md
Browse files
README.md
CHANGED
@@ -10,4 +10,21 @@ tags:
|
|
10 |
- computer-vision
|
11 |
- yolov8
|
12 |
- segmentation
|
13 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
- computer-vision
|
11 |
- yolov8
|
12 |
- segmentation
|
13 |
+
---
|
14 |
+
|
15 |
+
### Model Description
|
16 |
+
[Ultralytics:](https://github.com/ultralytics/ultralytics/) YOLOv8 in PyTorch > ONNX > CoreML > TFLite]
|
17 |
+
|
18 |
+
|
19 |
+
### Installation
|
20 |
+
```
|
21 |
+
pip install ultralytics
|
22 |
+
```
|
23 |
+
|
24 |
+
### Yolov8 Inference
|
25 |
+
```python
|
26 |
+
from ultralytics import YOLO
|
27 |
+
|
28 |
+
model = YOLO('turhancan97/yolov8-segment-trash-detection')
|
29 |
+
prediction = model.predict(image, imgsz=image_size, show=False, save=False)
|
30 |
+
```
|