YOLOv8 → YOLOv5 | Label Convert Documentation #19
Unanswered
Replies: 1 comment 2 replies
-
|
简介yolov8格式写成yolov5了 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
YOLOv8 → YOLOv5 | Label Convert Documentation
简介 link将YOLOv8格式数据集转换为YOLOv5格式。
支持标注格式为矩形框和多边形框。
YOLOv5数据结构如下 link notifications 具体结构示例文件,可移步:yolov8_dataset
yolov8_dataset ├── images │ ├── train │ │ ├── 0dcddf72.jpg │ │ └── images(3).jpg │ └── val │ ├── 8ae4af51.jpg │ └── images(13).jpg └── labels ├── train │ ├── 0dcddf72.txt │ └── images(3).txt └── val ├── 8ae4af51.txt └── images(13).txt 转换 link yolov8_to_yolov5 --data_dir dataset/yolov5_dataset --mode_list train,val --data_dir: 数据集所在目录。示例为dataset/yolov5_dataset --save_dir: 保存转换后的数据集目录。默认为dataset/yolov8_dataset_yolov5 --mode_list: 指定划分的数据集种类。 (例如:train,val,test / train,val) --yaml_path: 指定的yaml配置文件,用于读取其中names类名 转换后结构如下: link notifications 具体结构示例文件,可移步:yolov5_dataset
yolov5_dataset ├── classes.
https://rapidai.github.io/LabelConvert/docs/supportconversions/yolov8_to_yolov5/
Beta Was this translation helpful? Give feedback.
All reactions