YOLOv8/YOLOv7/YOLOv5系列算法改进[NO.14]主干网络C3替换为轻量化网络Ghostnet

本文主要是介绍YOLOv8/YOLOv7/YOLOv5系列算法改进[NO.14]主干网络C3替换为轻量化网络Ghostnet,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 前 言

作为当前先进的深度学习目标检测算法YOLOv5,已经集合了大量的trick,但是还是有提高和改进的空间,针对具体应用场景下的检测难点,可以不同的改进方法。此后的系列文章,将重点对YOLOv5的如何改进进行详细的介绍,目的是为了给那些搞科研的同学需要创新点或者搞工程项目的朋友需要达到更好的效果提供自己的微薄帮助和参考。

一、解决问题

       YOLOv5主干特征提取网络采用C3结构,带来较大的参数量,检测速度较慢,应用受限,在某些真实的应用场景如移动或者嵌入式设备,如此大而复杂的模型时难以被应用的。首先是模型过于庞大,面临着内存不足的问题,其次这些场景要求低延迟,或者说响应速度要快,想象一下自动驾驶汽车的行人检测系统如果速度很慢会发生什么可怕的事情。所以,研究小而高效的CNN模型在这些场景至关重要,至少目前是这样,尽管未来硬件也会越来越快。本文尝试将主干特征提取网络替换为更轻量的Ghostnet网络,以实现网络模型的轻量化,平衡速度和精度。

YOLOv5改进之十二:主干网络C3替换为轻量化网络ShuffleNetV2_人工智能算法工程师0301的博客-CSDN博客https://blog.csdn.net/m0_70388905/article/details/125612052YOLOv5改进之十一:主干网络C3替换为轻量化网络MobileNetV3_人工智能算法工程师0301的博客-CSDN博客https://blog.csdn.net/m0_70388905/article/details/125593267

二、基本原理

论文地址:[1911.11907] GhostNet: More Features from Cheap Operations (arxiv.org)https://arxiv.org/abs/1911.11907

Ghost模块即插即用,通过堆叠Ghost模块得出Ghost bottleneck,进而搭建轻量级神经网络——GhostNet。在ImageNet分类任务,GhostNet在相似计算量情况下Top-1正确率达75.7%,高于MobileNetV3的75.2%。

三、YOLOv7方 法

YOLOv7中已经添加了GhostSPPCSPC、GhostConv模块。

修改YOLOv7.yaml文件如下所示:

# parameters
nc: 1  # number of classes
depth_multiple: 1.0  # model depth multiple
width_multiple: 1.0  # layer channel multiple# anchors
anchors:- [12,16, 19,36, 40,28]  # P3/8- [36,75, 76,55, 72,146]  # P4/16- [142,110, 192,243, 459,401]  # P5/32# yolov7 backbone
backbone:# [from, number, module, args][[-1, 1, GhostConv, [32, 3, 1]],  # 0[-1, 1, GhostConv, [64, 3, 2]],  # 1-P1/2      [-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [128, 3, 2]],  # 3-P2/4  [-1, 1, GhostConv, [64, 1, 1]],[-2, 1, GhostConv, [64, 1, 1]],[-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [64, 3, 1]],[[-1, -3, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [256, 1, 1]],  # 11[-1, 1, MP, []],[-1, 1, GhostConv, [128, 1, 1]],[-3, 1, GhostConv, [128, 1, 1]],[-1, 1, GhostConv, [128, 3, 2]],[[-1, -3], 1, Concat, [1]],  # 16-P3/8  [-1, 1, GhostConv, [128, 1, 1]],[-2, 1, GhostConv, [128, 1, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[[-1, -3, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [512, 1, 1]],  # 24[-1, 1, MP, []],[-1, 1, GhostConv, [256, 1, 1]],[-3, 1, GhostConv, [256, 1, 1]],[-1, 1, GhostConv, [256, 3, 2]],[[-1, -3], 1, Concat, [1]],  # 29-P4/16  [-1, 1, GhostConv, [256, 1, 1]],[-2, 1, GhostConv, [256, 1, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[[-1, -3, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [1024, 1, 1]],  # 37[-1, 1, MP, []],[-1, 1, GhostConv, [512, 1, 1]],[-3, 1, GhostConv, [512, 1, 1]],[-1, 1, GhostConv, [512, 3, 2]],[[-1, -3], 1, Concat, [1]],  # 42-P5/32  [-1, 1, GhostConv, [256, 1, 1]],[-2, 1, GhostConv, [256, 1, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[[-1, -3, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [1024, 1, 1]],  # 50]# yolov7 head
head:[[-1, 1, GhostSPPCSPC, [512]], # 51[-1, 1, GhostConv, [256, 1, 1]],[-1, 1, nn.Upsample, [None, 2, 'nearest']],[37, 1, GhostConv, [256, 1, 1]], # route backbone P4[[-1, -2], 1, Concat, [1]],[-1, 1, GhostConv, [256, 1, 1]],[-2, 1, GhostConv, [256, 1, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[[-1, -2, -3, -4, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [256, 1, 1]], # 63[-1, 1, GhostConv, [128, 1, 1]],[-1, 1, nn.Upsample, [None, 2, 'nearest']],[24, 1, GhostConv, [128, 1, 1]], # route backbone P3[[-1, -2], 1, Concat, [1]],[-1, 1, GhostConv, [128, 1, 1]],[-2, 1, GhostConv, [128, 1, 1]],[-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [64, 3, 1]],[-1, 1, GhostConv, [64, 3, 1]],[[-1, -2, -3, -4, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [128, 1, 1]], # 75[-1, 1, MP, []],[-1, 1, GhostConv, [128, 1, 1]],[-3, 1, GhostConv, [128, 1, 1]],[-1, 1, GhostConv, [128, 3, 2]],[[-1, -3, 63], 1, Concat, [1]],[-1, 1, GhostConv, [256, 1, 1]],[-2, 1, GhostConv, [256, 1, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[-1, 1, GhostConv, [128, 3, 1]],[[-1, -2, -3, -4, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [256, 1, 1]], # 88[-1, 1, MP, []],[-1, 1, GhostConv, [256, 1, 1]],[-3, 1, GhostConv, [256, 1, 1]],[-1, 1, GhostConv, [256, 3, 2]],[[-1, -3, 51], 1, Concat, [1]],[-1, 1, GhostConv, [512, 1, 1]],[-2, 1, GhostConv, [512, 1, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[-1, 1, GhostConv, [256, 3, 1]],[[-1, -2, -3, -4, -5, -6], 1, Concat, [1]],[-1, 1, GhostConv, [512, 1, 1]], # 101[75, 1, RepConv, [256, 3, 1]],[88, 1, RepConv, [512, 3, 1]],[101, 1, RepConv, [1024, 3, 1]],[[102,103,104], 1, IDetect, [nc, anchors]],   # Detect(P3, P4, P5)]

四、YOLOv5方 法

第一步:修改common.py,增加ghostC3模块。

class GhostBottleneck(nn.Module):# Ghost Bottleneck https://github.com/huawei-noah/ghostnetdef __init__(self, c1, c2, k=3, s=1):  # ch_in, ch_out, kernel, stridesuper().__init__()c_ = c2 // 2self.conv = nn.Sequential(GhostConv(c1, c_, 1, 1),  # pwDWConv(c_, c_, k, s, act=False) if s == 2 else nn.Identity(),  # dwGhostConv(c_, c2, 1, 1, act=False))  # pw-linearself.shortcut = nn.Sequential(DWConv(c1, c1, k, s, act=False),Conv(c1, c2, 1, 1, act=False)) if s == 2 else nn.Identity()def forward(self, x):return self.conv(x) + self.shortcut(x)
class C3Ghost(C3):# C3 module with GhostBottleneck()def __init__(self, c1, c2, n=1, shortcut=True, g=1, e=0.5):super().__init__(c1, c2, n, shortcut, g, e)c_ = int(c2 * e)  # hidden channelsself.m = nn.Sequential(*(GhostBottleneck(c_, c_) for _ in range(n)))

第二步:将yolo.py中注册模块。

if m in [Conv, GhostConv, Bottleneck, GhostBottleneck, SPP, SPPF, DWConv, MixConv2d, Focus, CrossConv, BottleneckCSP,CoordAtt,CrossConv,C3,CTR3,C3TR,C3SPP, C3Ghost,

第三步:进行修改yaml文件

 将C3模块替换成C3Ghost即可。

结 果:本人在多个数据集上做了大量实验,针对不同的数据集效果不同,map值有所下降,但是权值模型大小降低,参数量下降。

预告一下:下一篇内容将继续分享网络轻量化方法的分享——深度可分离卷积。有兴趣的朋友可以关注一下我,有问题可以留言或者私聊我哦

PS:主干网络的替换不仅仅是适用改进YOLOv5,也可以改进其他的YOLO网络以及目标检测网络,比如YOLOv4、v3等。

最后,希望能互粉一下,做个朋友,一起学习交流。

这篇关于YOLOv8/YOLOv7/YOLOv5系列算法改进[NO.14]主干网络C3替换为轻量化网络Ghostnet的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/160137

相关文章

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

康拓展开(hash算法中会用到)

康拓展开是一个全排列到一个自然数的双射(也就是某个全排列与某个自然数一一对应) 公式: X=a[n]*(n-1)!+a[n-1]*(n-2)!+...+a[i]*(i-1)!+...+a[1]*0! 其中,a[i]为整数,并且0<=a[i]<i,1<=i<=n。(a[i]在不同应用中的含义不同); 典型应用: 计算当前排列在所有由小到大全排列中的顺序,也就是说求当前排列是第

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

综合安防管理平台LntonAIServer视频监控汇聚抖动检测算法优势

LntonAIServer视频质量诊断功能中的抖动检测是一个专门针对视频稳定性进行分析的功能。抖动通常是指视频帧之间的不必要运动,这种运动可能是由于摄像机的移动、传输中的错误或编解码问题导致的。抖动检测对于确保视频内容的平滑性和观看体验至关重要。 优势 1. 提高图像质量 - 清晰度提升:减少抖动,提高图像的清晰度和细节表现力,使得监控画面更加真实可信。 - 细节增强:在低光条件下,抖

【数据结构】——原来排序算法搞懂这些就行,轻松拿捏

前言:快速排序的实现最重要的是找基准值,下面让我们来了解如何实现找基准值 基准值的注释:在快排的过程中,每一次我们要取一个元素作为枢纽值,以这个数字来将序列划分为两部分。 在此我们采用三数取中法,也就是取左端、中间、右端三个数,然后进行排序,将中间数作为枢纽值。 快速排序实现主框架: //快速排序 void QuickSort(int* arr, int left, int rig

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

秋招最新大模型算法面试,熬夜都要肝完它

💥大家在面试大模型LLM这个板块的时候,不知道面试完会不会复盘、总结,做笔记的习惯,这份大模型算法岗面试八股笔记也帮助不少人拿到过offer ✨对于面试大模型算法工程师会有一定的帮助,都附有完整答案,熬夜也要看完,祝大家一臂之力 这份《大模型算法工程师面试题》已经上传CSDN,还有完整版的大模型 AI 学习资料,朋友们如果需要可以微信扫描下方CSDN官方认证二维码免费领取【保证100%免费