Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,57 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
-
-
|
5 |
-
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
+
- RyzenAI
|
5 |
+
- object-detection
|
6 |
+
- vision
|
7 |
+
- YOLO
|
8 |
+
- Pytorch
|
9 |
+
datasets:
|
10 |
+
- COCO
|
11 |
+
metrics:
|
12 |
+
- mAP
|
13 |
+
---
|
14 |
+
# YOLOv8m model trained on COCO for use in comfyUI nodes
|
15 |
+
|
16 |
+
YOLOv8m is the medium version of YOLOv8 model trained on COCO object detection (118k annotated images) at resolution 640x640.
|
17 |
+
It was released in [https://github.com/ultralytics/ultralytics](https://github.com/ultralytics/ultralytics).
|
18 |
+
|
19 |
+
We develop a modified version that could be supported by comfyUI nodes as shown in this git repo.
|
20 |
+
For more information please look into the github and wiki for same [https://github.com/jags111/ComfyUI_Jags_VectorMagic](https://github.com/jags111/ComfyUI_Jags_VectorMagic)
|
21 |
+
We have nodes for detection and segmentation seperately.
|
22 |
+
|
23 |
+
|
24 |
+
## Model description
|
25 |
+
|
26 |
+
Ultralytics YOLOv8 is a cutting-edge, state-of-the-art (SOTA) model that builds upon the success of previous YOLO versions and introduces new features and improvements to further boost performance and flexibility.
|
27 |
+
YOLOv8 is designed to be fast, accurate, and easy to use, making it an excellent choice for a wide range of object detection and tracking, instance segmentation, image classification and pose estimation tasks.
|
28 |
+
|
29 |
+
|
30 |
+
## Intended uses & limitations
|
31 |
+
|
32 |
+
You can use the raw model for object detection. See the [model hub](https://huggingface.co/models?search=amd/yolov8) to look for all available YOLOv8 models.
|
33 |
+
|
34 |
+
|
35 |
+
## How to use
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
### Installation
|
40 |
+
|
41 |
+
Follow instructions provided in the github pages for installation of the nodes and put the models in the required model folder.
|
42 |
+
|
43 |
+
### Conclusion
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
```bibtex
|
48 |
+
@software{yolov8_ultralytics,
|
49 |
+
author = {Glenn Jocher and Ayush Chaurasia and Jing Qiu},
|
50 |
+
title = {Ultralytics YOLOv8},
|
51 |
+
version = {8.0.0},
|
52 |
+
year = {2023},
|
53 |
+
url = {https://github.com/ultralytics/ultralytics},
|
54 |
+
orcid = {0000-0001-5950-6979, 0000-0002-7603-6750, 0000-0003-3783-7069},
|
55 |
+
license = {AGPL-3.0}
|
56 |
+
}
|
57 |
+
```
|