当前位置: 代码迷 >> 综合 >> 【YOLOV5-5.x 源码讲解】coco128.yaml
  详细解决方案

【YOLOV5-5.x 源码讲解】coco128.yaml

热度:59   发布时间:2023-12-14 09:28:00.0

目录

  • 前言
  • 数据配置文件

前言

源码: YOLOv5源码.
链接: 【YOLOV5-5.x 源码讲解】整体项目文件导航.
注释版全部项目文件已上传至GitHub: yolov5-5.x-annotations.

这个文件是数据配置文件,存放着 数据集源路径root、训练集、验证集、测试集地址,类别个数,类别名,下载地址等信息。

注意事项

\qquad在打开数据集配置文件的时候,有时候会显示一些乱码错误如:’utf’ 、'gbk’等字样,那通常是你的配置文件中有中文注释,所以报错。应该在打开配置文件的时候使用UTF-8的格式打开:
在这里插入图片描述

数据配置文件

# 数据集源路径root、训练集、验证集、测试集地址
path: ../datasets/coco128  # 数据集源路径root dir
train: images/train2017  # root下的训练集地址 128 images
val: images/train2017  # root下的验证集地址 128 images
test:                # root下的验证集地址 128 images# 数据集类别信息
nc: 80  # 数据集类别数量
names: [ 'person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus', 'train', 'truck', 'boat', 'traffic light','fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird', 'cat', 'dog', 'horse', 'sheep', 'cow','elephant', 'bear', 'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie', 'suitcase', 'frisbee','skis', 'snowboard', 'sports ball', 'kite', 'baseball bat', 'baseball glove', 'skateboard', 'surfboard','tennis racket', 'bottle', 'wine glass', 'cup', 'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple','sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza', 'donut', 'cake', 'chair', 'couch','potted plant', 'bed', 'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard', 'cell phone','microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors', 'teddy bear','hair drier', 'toothbrush' ]  # 数据集类别名# 数据集下载地址
download: https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip

–2021.08.17 18:44

  相关解决方案