热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

卷积神经网络AlexNetVGGResNetDenseNetShuffleNetMobileNetGhostNetEfficientNetRepVGG

卷积神经网络AlexNetVGGResNetDenseNetShuffleNetMobileNetGhostNetEfficientNetRepVGG1.ResNet2.Dense

卷积神经网络AlexNet VGG ResNet DenseNet ShuffleNet MobileNet GhostNet EfficientNet RepVGG

    • 1.ResNet
    • 2.DenseNet
    • 3.ShuffleNet
    • 4.MobileNet
    • 5.GhostNet
    • 6.EfficientNet
    • 7.RepVGG
    • 8.BN,SE,

【图像去噪 paper 系列 (1) (2)】
【文档图像二值化数据集 databases】
【文档图像二值化 paper 系列 -1- | 系列 -2-】

找paper搭配 Sci-Hub 食用更佳 (๑•̀ㅂ•́)و✧
Sci-Hub 实时更新 : https://tool.yovisun.com/scihub/
公益科研通文献求助:https://www.ablesci.com/
硕士期间我的公开数据集paperswithcode.com/dataset/cntd、tlhdibd2021、ceahb2021-5,包含街景文本检测、文档图像识别、文档图像二值化

卷积神经网络list paper with code

1.ResNet

在这里插入图片描述

2.DenseNet


3.ShuffleNet

V1:
在这里插入图片描述
在这里插入图片描述
V2:
在这里插入图片描述

4.MobileNet

空间可分离卷积深度可分离卷积

3×3的核分成一个3×1和一个1×3的核

V1:

V2:

V3:

5.GhostNet

神经网络中的特征图冗余,经过可视化后发现有些特征是相似的,因此,通过一些固定的普通卷积生成的特征图后进行线性操作,进行融合减少计算量。
在这里插入图片描述

在这里插入图片描述

6.EfficientNet

V1: 增加网络的深度(层数)、宽度(通道数)和更大的输入图像分辨率
在这里插入图片描述
MBConv 结构主要由一个1x1的普通卷积(升维作用,包含BN和Swish激活函数),一个kxk的Depthwise Conv卷积(包含BN和Swish激活函数),一个SE模块,一个1x1的普通卷积(降维作用,包含BN),一个Droupout层构成。

V2: uses both MBConv and the newly added fused-MBConv
在这里插入图片描述
在这里插入图片描述

7.RepVGG

Advantages:
The model has a VGG-like plain (a.k.a. feed-forward) topology 1 without any branches. I.e., every layer takes the output of its only preceding layer as input and feeds the output into its only following layer.

The model’s body uses only 3 × 3 conv and ReLU.

The concrete architecture (including the specific depth and layer widths) is instantiated with no automatic search, manual refinement, compound scaling, nor other heavy designs.

Reference :图解RepVGG

运用重参数化将多分支结构转换为简单结构,网络推理时更快
在这里插入图片描述
训练时使用3×3 1×1和恒等残差块,推理时将1×1卷积和恒等残差块融合进3×3
在这里插入图片描述
与BN层融合:
在这里插入图片描述
与1×1卷积融合:

3×3卷积需要padding一圈0,其中间的卷积核与1×1卷积核路径相同。因此,把1x1卷积核加在3x3卷积核中间,就完成了卷积分支的融合。

与恒等残差块融合:

先将其转换为1×1卷积,再转换为3×3卷积。3个3×3的卷积核相加便为推理时的plain网络结构。
在这里插入图片描述

8.BN,SE,

SE模块由一个全局平均池化,两个全连接层组成。


推荐阅读
author-avatar
czx_91_673
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有