• yolov5 训练


    下载代码

    https://github.com/ultralytics/yolov5

    1.新建数据集

    构建结构目录,我的结构目录如下所示:

    1. yolov5
    2. ├─data
    3. ├─Annotations
    4. ├─ImageSets
    5. ├─JPEGImages
    6. ├─labels

    介绍一下各个文件夹的用途:

    Annotations:里面是标注图片对应的标注信息,是xml格式的(标注你的xml,可以自行进去看一下结构,里面主要的就是类别和标注的坐标点,其他不重要)。

    ImageSets:在后面里面生成Main文件夹,里面包含train和test,主要记录训练集的文件名称和测试集的文件名称。

    JPEImages:原始的图片数据。

    labels:该文件夹和ImageSets的Main文件夹在后面共同生成,用于生成VOC2007格式的数据集。

    2.生成VOC2007数据集的文件

    该步骤会将上一步的ImageSets和labels缺少的文件补齐,并生成2007_Train和2007_test的txt文件。下面的代码自动制作VOC2007的数据集,

    1)将代码拷贝到ubuntu下yolov7/data目录下新建为main.py

    2)在yolov5/data目录下新建文件夹Annotations和JPEImages。并将标注的xml和照片考入进去

    3)修改下面代码的路径为自己电脑的文件对应路径

    4)直接运行即可 
     

    1. #缺少依赖包的同学自行下载一下,很好下
    2. import xml.etree.ElementTree as ET
    3. import pickle
    4. import os
    5. from os import listdir, getcwd
    6. from os.path import join
    7. import random
    8. #类别根据你的数据集类别进行定义
    9. classes=["mosquitto"]
    10. def clear_hidden_files(path):
    11. dir_list = os.listdir(path)
    12. for i in dir_list:
    13. abspath = os.path.join(os.path.abspath(path), i)
    14. if os.path.isfile(abspath):
    15. if i.startswith("._"):
    16. os.remove(abspath)
    17. else:
    18. clear_hidden_files(abspath)
    19. def convert(size, box):
    20. dw = 1./size[0]
    21. dh = 1./size[1]
    22. x = (box[0] + box[1])/2.0
    23. y = (box[2] + box[3])/2.0
    24. w = box[1] - box[0]
    25. h = box[3] - box[2]
    26. x = x*dw
    27. w = w*dw
    28. y = y*dh
    29. h = h*dh
    30. return (x,y,w,h)
    31. #下面的文件夹和文件的名称根据你的喜好自定定义,也可以按照我这里的代码直接运行
    32. def convert_annotation(image_id):
    33. in_file = open('./Annotations/%s.xml' %image_id)
    34. out_file = open('./labels/%s.txt' %image_id, 'w')
    35. tree=ET.parse(in_file)
    36. root = tree.getroot()
    37. size = root.find('size')
    38. w = int(size.find('width').text)
    39. h = int(size.find('height').text)
    40. for obj in root.iter('object'):
    41. difficult = obj.find('difficult').text
    42. cls = obj.find('name').text
    43. if cls not in classes or int(difficult) == 1:
    44. continue
    45. cls_id = classes.index(cls)
    46. xmlbox = obj.find('bndbox')
    47. b = (float(xmlbox.find('xmin').text), float(xmlbox.find('xmax').text), float(xmlbox.find('ymin').text), float(xmlbox.find('ymax').text))
    48. bb = convert((w,h), b)
    49. out_file.write(str(cls_id) + " " + " ".join([str(a) for a in bb]) + '\n')
    50. in_file.close()
    51. out_file.close()
    52. wd = os.getcwd()
    53. work_sapce_dir = os.path.join(wd, "./")
    54. if not os.path.isdir(work_sapce_dir):
    55. os.mkdir(work_sapce_dir)
    56. annotation_dir = os.path.join(work_sapce_dir, "Annotations/")
    57. if not os.path.isdir(annotation_dir):
    58. os.mkdir(annotation_dir)
    59. clear_hidden_files(annotation_dir)
    60. image_dir = os.path.join(work_sapce_dir, "JPEGImages/")
    61. if not os.path.isdir(image_dir):
    62. os.mkdir(image_dir)
    63. clear_hidden_files(image_dir)
    64. VOC_file_dir = os.path.join(work_sapce_dir, "ImageSets/")
    65. if not os.path.isdir(VOC_file_dir):
    66. os.mkdir(VOC_file_dir)
    67. VOC_file_dir = os.path.join(VOC_file_dir, "Main/")
    68. if not os.path.isdir(VOC_file_dir):
    69. os.mkdir(VOC_file_dir)
    70. train_file = open(os.path.join(wd, "2007_train.txt"), 'w')
    71. test_file = open(os.path.join(wd, "2007_test.txt"), 'w')
    72. train_file.close()
    73. test_file.close()
    74. VOC_train_file = open(os.path.join(work_sapce_dir, "ImageSets/Main/train.txt"), 'w')
    75. VOC_test_file = open(os.path.join(work_sapce_dir, "ImageSets/Main/test.txt"), 'w')
    76. VOC_train_file.close()
    77. VOC_test_file.close()
    78. if not os.path.exists('./labels'):
    79. os.makedirs('./labels')
    80. train_file = open(os.path.join(wd, "2007_train.txt"), 'a')
    81. test_file = open(os.path.join(wd, "2007_test.txt"), 'a')
    82. VOC_train_file = open(os.path.join(work_sapce_dir, "ImageSets/Main/train.txt"), 'a')
    83. VOC_test_file = open(os.path.join(work_sapce_dir, "ImageSets/Main/test.txt"), 'a')
    84. list = os.listdir(image_dir) # list image files
    85. probo = random.randint(1, 100)
    86. print("Probobility: %d" % probo)
    87. for i in range(0,len(list)):
    88. path = os.path.join(image_dir,list[i])
    89. if os.path.isfile(path):
    90. image_path = image_dir + list[i]
    91. voc_path = list[i]
    92. (nameWithoutExtention, extention) = os.path.splitext(os.path.basename(image_path))
    93. (voc_nameWithoutExtention, voc_extention) = os.path.splitext(os.path.basename(voc_path))
    94. annotation_name = nameWithoutExtention + '.xml'
    95. annotation_path = os.path.join(annotation_dir, annotation_name)
    96. probo = random.randint(1, 100)
    97. print("Probobility: %d" % probo)
    98. if(probo < 75):
    99. if os.path.exists(annotation_path):
    100. train_file.write(image_path + '\n')
    101. VOC_train_file.write(voc_nameWithoutExtention + '\n')
    102. convert_annotation(nameWithoutExtention)
    103. else:
    104. if os.path.exists(annotation_path):
    105. test_file.write(image_path + '\n')
    106. VOC_test_file.write(voc_nameWithoutExtention + '\n')
    107. convert_annotation(nameWithoutExtention)
    108. train_file.close()
    109. test_file.close()
    110. VOC_train_file.close()
    111. VOC_test_file.close()

    3.训练模型

    1.创建yolov5/data/coco.yaml代码需要修改的地方为5处。

    1. # COCO 2017 dataset http://cocodataset.org
    2. # download command/URL (optional)
    3. #download: bash ./scripts/get_coco.sh
    4. # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/]
    5. train: /root/yolov5/data/2007_train.txt
    6. val: /root/yolov5/data/2007_test.txt
    7. #test: ./coco/test-dev2017.txt # 20288 of 40670 images, submit to https://competitions.codalab.org/competitions/20794
    8. # number of classes
    9. nc: 1
    10. # class names
    11. names: [ 'mosquitto' ]

    1):把代码自动下载COCO数据集的命令注释掉,以防代码自动下载数据集占用内存;

    2):修改train的位置为train_list.txt的路径;

    3):修改val的位置为val_list.txt的路径;

    4):修改nc为数据集目标总数;

    5):修改names为数据集所有目标的名称。然后保存。

     2.修改yolov5/utils/dataloaders.py代码

    如下图所示 将images修改为JPEGImages

    3.修改model下调用的yolov5s.yaml的nc为自己的类别数量

      至此就可以开始训练了

    python train.py --img 640 --batch 16 --epochs 300 --data ./data/mos.yaml --cfg ./models/yolov5s.yaml --weights      ''
    
    1. 其中weights是权重文件 .pt 格式,可以输入空格,代表使用随机权重,或者输入权重文件的路径
    2. cfg是模型的yaml文件,一般存放在models文件夹里
    3. data是数据集的yaml文件,一般存放在data文件夹里
    4. epochs是训练轮数,默认300轮
    5. batch-size是batch数,默认16
    6. img是输入图片大小,网络会自动按参数进行resize,默认640X640

  • 相关阅读:
    Websocket升级版
    基于SpringBoot+RabbitMQ+Redis开发的秒杀系统(异步下单、热点数据缓存、解决超卖)
    电脑安装了ubnutu20.04双系统以后,卡死在grub界面里
    字节二面,差点没答好
    No instances available for IP
    【每日一题】ARC071D - ### | 前缀和 | 简单
    大华城市安防系统平台任意文件下载漏洞
    笔记二:odoo搜索、筛选和分组
    FPGA USB device原型验证流程及调试手段
    11.4-GPT4AllTools版本已开始对小部分GPT3.5用户内测推送
  • 原文地址:https://blog.csdn.net/weixin_41012767/article/details/126936419