YOLOv5训练量化压缩

举报
风吹稻花香 发表于 2021/06/04 23:29:31 2021/06/04
【摘要】 YOLOv5并量化压缩 下载源码和安装依赖库: 源码地址:https://github.com/ultralytics/yolov5 下载后解压,在目录内打开cmd并激活环境: 安装依赖库: pip install -r requirements.txt 5. 数据标注: 数据标注我们要用labelimg,使用pip即可安装: pip install labe...

YOLOv5并量化压缩


下载源码和安装依赖库:
源码地址:https://github.com/ultralytics/yolov5

下载后解压,在目录内打开cmd并激活环境:

安装依赖库:

pip install -r requirements.txt


5. 数据标注:
数据标注我们要用labelimg,使用pip即可安装:

pip install labelimg

 

数据预处理:
创建 convert_data.py 文件,内容如下:


  
  1. # -*- coding: utf-8 -*-
  2. import xml.etree.ElementTree as ET
  3. from tqdm import tqdm
  4. import os
  5. from os import getcwd
  6. def convert(size, box):
  7.     dw = 1. / (size[0])
  8.     dh = 1. / (size[1])
  9.     x = (box[0] + box[1]) / 2.0 - 1
  10.     y = (box[2] + box[3]) / 2.0 - 1
  11.     w = box[1] - box[0]
  12.     h = box[3] - box[2]
  13.     x = x * dw
  14.     w = w * dw
  15.     y = y * dh
  16.     h = h * dh
  17.     return x, y, w, h
  18. def convert_annotation(image_id):
  19.     # try:
  20.     in_file = open('VOCData/images/{}.xml'.format(image_id), enc

文章来源: blog.csdn.net,作者:网奇,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/jacke121/article/details/117253439

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。