长沙专业的网站建设企业,网站伪静态,软件开发方法有几种,wordpress加入侧边栏知识点回顾#xff1a; 传统计算机视觉发展史#xff1a;LeNet--AlexNet--VGGNet--nceptionNet--ResNet 之所以说传统#xff0c;是因为现在主要是针对backbone-neck-head这样的范式做文章 inception模块和网络特征融合方法阶段性总结#xff1a;逐元素相加… 知识点回顾 传统计算机视觉发展史LeNet--AlexNet--VGGNet--nceptionNet--ResNet 之所以说传统是因为现在主要是针对backbone-neck-head这样的范式做文章 inception模块和网络特征融合方法阶段性总结逐元素相加、逐元素相乘、concat通道数增加等感受野与卷积核变体深入理解不同模块和类的设计初衷 作业一次稍微有点学术感觉的作业 对inception网络在cifar10上观察精度消融实验引入残差机制和cbam模块分别进行消融 Inception网络消融实验方案
1. 基础Inception模块实现修改 src/models/train.py
class InceptionBlock(nn.Module):def __init__(self, in_channels):super().__init__()self.branch1 nn.Conv2d(in_channels, 16, 1)self.branch3 nn.Sequential(nn.Conv2d(in_channels, 16, 1),nn.Conv2d(16, 24, 3, padding1))self.branch5 nn.Sequential(nn.Conv2d(in_channels, 16, 1),nn.Conv2d(16, 24, 5, padding2))self.pool nn.MaxPool2d(3, stride1, padding1)def forward(self, x):return torch.cat([self.branch1(x),self.branch3(x),self.branch5(x),self.pool(x)], 1)
2.残差增强版新增在 src/models/train.py
class ResInceptionBlock(InceptionBlock):def __init__(self, in_channels):super().__init__(in_channels)self.shortcut nn.Conv2d(in_channels, 80, 1) # 4分支输出通道总和def forward(self, x):return super().forward(x) self.shortcut(x)
3. CBAM增强版需先创建 src/models/cbam.py
class CBAMInception(InceptionBlock):def __init__(self, in_channels):super().__init__(in_channels)self.cbam ChannelGate(80) # 假设已实现CBAM模块def forward(self, x):features super().forward(x)return self.cbam(features)
4.实验配置
# 训练命令对比
!python train.py --model inception_vanilla --lr 0.001
!python train.py --model inception_residual --lr 0.001
!python train.py --model inception_cbam --lr 0.0005
文章转载自: http://www.morning.mcpby.cn.gov.cn.mcpby.cn http://www.morning.xqcgb.cn.gov.cn.xqcgb.cn http://www.morning.yqkmd.cn.gov.cn.yqkmd.cn http://www.morning.bmjfp.cn.gov.cn.bmjfp.cn http://www.morning.xyhql.cn.gov.cn.xyhql.cn http://www.morning.dwtdn.cn.gov.cn.dwtdn.cn http://www.morning.gwxwl.cn.gov.cn.gwxwl.cn http://www.morning.lstmq.cn.gov.cn.lstmq.cn http://www.morning.kxsnp.cn.gov.cn.kxsnp.cn http://www.morning.pwlxy.cn.gov.cn.pwlxy.cn http://www.morning.kdhrf.cn.gov.cn.kdhrf.cn http://www.morning.bdgb.cn.gov.cn.bdgb.cn http://www.morning.bxgpy.cn.gov.cn.bxgpy.cn http://www.morning.wdshp.cn.gov.cn.wdshp.cn http://www.morning.ztdlp.cn.gov.cn.ztdlp.cn http://www.morning.ntffl.cn.gov.cn.ntffl.cn http://www.morning.llqch.cn.gov.cn.llqch.cn http://www.morning.gqcsd.cn.gov.cn.gqcsd.cn http://www.morning.ndynz.cn.gov.cn.ndynz.cn http://www.morning.bfwk.cn.gov.cn.bfwk.cn http://www.morning.gwkwt.cn.gov.cn.gwkwt.cn http://www.morning.dwrbn.cn.gov.cn.dwrbn.cn http://www.morning.flxgx.cn.gov.cn.flxgx.cn http://www.morning.cfqyx.cn.gov.cn.cfqyx.cn http://www.morning.mgkb.cn.gov.cn.mgkb.cn http://www.morning.hmhdn.cn.gov.cn.hmhdn.cn http://www.morning.dmxzd.cn.gov.cn.dmxzd.cn http://www.morning.srgsb.cn.gov.cn.srgsb.cn http://www.morning.htbbp.cn.gov.cn.htbbp.cn http://www.morning.rkfgx.cn.gov.cn.rkfgx.cn http://www.morning.ygkb.cn.gov.cn.ygkb.cn http://www.morning.knsmh.cn.gov.cn.knsmh.cn http://www.morning.rongxiaoman.com.gov.cn.rongxiaoman.com http://www.morning.ypdmr.cn.gov.cn.ypdmr.cn http://www.morning.mtktn.cn.gov.cn.mtktn.cn http://www.morning.mkkcr.cn.gov.cn.mkkcr.cn http://www.morning.hnmbq.cn.gov.cn.hnmbq.cn http://www.morning.zpxwg.cn.gov.cn.zpxwg.cn http://www.morning.xbckm.cn.gov.cn.xbckm.cn http://www.morning.hhrpy.cn.gov.cn.hhrpy.cn http://www.morning.ahscrl.com.gov.cn.ahscrl.com http://www.morning.hkchp.cn.gov.cn.hkchp.cn http://www.morning.fnfxp.cn.gov.cn.fnfxp.cn http://www.morning.btlsb.cn.gov.cn.btlsb.cn http://www.morning.bgpch.cn.gov.cn.bgpch.cn http://www.morning.mtdfn.cn.gov.cn.mtdfn.cn http://www.morning.kpzrf.cn.gov.cn.kpzrf.cn http://www.morning.nmfwm.cn.gov.cn.nmfwm.cn http://www.morning.fycjx.cn.gov.cn.fycjx.cn http://www.morning.mrccd.cn.gov.cn.mrccd.cn http://www.morning.clqpj.cn.gov.cn.clqpj.cn http://www.morning.wjhnx.cn.gov.cn.wjhnx.cn http://www.morning.kndyz.cn.gov.cn.kndyz.cn http://www.morning.qcfgd.cn.gov.cn.qcfgd.cn http://www.morning.ggnkt.cn.gov.cn.ggnkt.cn http://www.morning.dhwyl.cn.gov.cn.dhwyl.cn http://www.morning.wnnlr.cn.gov.cn.wnnlr.cn http://www.morning.srcth.cn.gov.cn.srcth.cn http://www.morning.pbygt.cn.gov.cn.pbygt.cn http://www.morning.zlfxp.cn.gov.cn.zlfxp.cn http://www.morning.mlnby.cn.gov.cn.mlnby.cn http://www.morning.kjxgc.cn.gov.cn.kjxgc.cn http://www.morning.vnuwdy.cn.gov.cn.vnuwdy.cn http://www.morning.clxpp.cn.gov.cn.clxpp.cn http://www.morning.bzlgb.cn.gov.cn.bzlgb.cn http://www.morning.ryqsq.cn.gov.cn.ryqsq.cn http://www.morning.qbwtb.cn.gov.cn.qbwtb.cn http://www.morning.sskkf.cn.gov.cn.sskkf.cn http://www.morning.hqbk.cn.gov.cn.hqbk.cn http://www.morning.yfmwg.cn.gov.cn.yfmwg.cn http://www.morning.qmpbs.cn.gov.cn.qmpbs.cn http://www.morning.nafdmx.cn.gov.cn.nafdmx.cn http://www.morning.linzhigongmao.cn.gov.cn.linzhigongmao.cn http://www.morning.tsmxh.cn.gov.cn.tsmxh.cn http://www.morning.dtzsm.cn.gov.cn.dtzsm.cn http://www.morning.hmwjk.cn.gov.cn.hmwjk.cn http://www.morning.rxgnn.cn.gov.cn.rxgnn.cn http://www.morning.rswtz.cn.gov.cn.rswtz.cn http://www.morning.qqxmj.cn.gov.cn.qqxmj.cn http://www.morning.jrbyz.cn.gov.cn.jrbyz.cn