DL之GoogleNet:GoogleNet(InceptionV1)算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

目录

GoogleNet算法的简介

GoogleNet算法的架构详解

GoogleNet算法的案例应用

GoogleNet网络结构大图


相关文章
DL之GoogleNet:GoogleNet(InceptionV1)算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略
DL之GoogleNet:GoogleNet(InceptionV1)算法的架构详解、损失函数、网络训练和学习之详细攻略

DL之GoogleNet:GoogleNet(InceptionV1)算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略
DL之BN-Inception:BN-Inception算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略
DL之InceptionV2/V3:InceptionV2 & InceptionV3算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略DL之InceptionV4/ResNet:InceptionV4/Inception-ResNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

GoogleNet算法的简介

GoogleNet,来自Google公司研究员。以GoogleNet(Inception v1)为例,于2014年ILSVRC竞赛图像分类任务第一名(6.67% top-5 error)。GoogLeNet设计了22层卷积神经网络,依然是没有最深,只有更深,性能与VGGNet相近。
Abstract
      We propose a deep convolutional neural network architecture codenamed Inception,  which was responsible for setting the new state of the art for classification  and detection in the ImageNet Large-Scale Visual Recognition Challenge 2014  (ILSVRC14). The main hallmark of this architecture is the improved utilization  of the computing resources inside the network. This was achieved by a carefully  crafted design that allows for increasing the depth and width of the network while  keeping the computational budget constant. To optimize quality, the architectural  decisions were based on the Hebbian principle and the intuition of multi-scale  processing. One particular incarnation used in our submission for ILSVRC14 is  called GoogLeNet, a 22 layers deep network, the quality of which is assessed in  the context of classification and detection.
摘要
      我们提出了一种深卷积神经网络结构,代号为“Inception”,负责在ImageNet大规模视觉识别挑战2014 (ILSVRC14)中设置分类和检测的最新技术。这种体系结构的主要特点是提高了网络内计算资源的利用率。这是通过精心设计的设计实现的,该设计允许在保持计算预算不变的同时增加网络的深度和宽度。为了优化质量,架构决策基于Hebbian原理和多尺度处理的直觉。在我们提交的ILSVRC14中使用的一种特殊形式是GoogLeNet,它是一个22层的深层网络,其质量是在分类和检测的背景下评估的。
Conclusions  
      Our results seem to yield a solid evidence that approximating the expected optimal sparse structure  by readily available dense building blocks is a viable method for improving neural networks for  computer vision. The main advantage of this method is a significant quality gain at a modest increase  of computational requirements compared to shallower and less wide networks. Also note that  our detection work was competitive despite of neither utilizing context nor performing bounding box regression and this fact provides further evidence of the strength of the Inception architecture. Although it is expected that similar quality of result can be achieved by much more expensive networks of similar depth and width, our approach yields solid evidence that moving to sparser architectures is feasible and useful idea in general. This suggest promising future work towards creating sparser and more refined structures in automated ways on the basis of [2].
结论
      我们的结果似乎提供了一个坚实的证据,逼近预期的最优稀疏结构,由现成的密集building blocks是一个可行的方法,以改善神经网络的计算机视觉。这种方法的主要优点是,与较浅且较宽的网络相比,在计算量适度增加的情况下,可以显著提高质量。还要注意,我们的检测工作是竞争性的,尽管既没有使用上下文,也没有执行边界框回归,这一事实为Inception架构的强度提供了进一步的证据。虽然期望通过更昂贵的深度和宽度相似的网络可以获得类似质量的结果,但我们的方法提供了坚实的证据,表明转向更稀疏的体系结构通常是可行和有用的。这表明未来有希望在[2]的基础上以自动化的方式创建更稀疏和更精细的结构。

1、实验结果

论文
Christian Szegedy et al(2015): Going Deeper With Convolutions. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR).
Christian Szegedy, Wei Liu, YangqingJia, Pierre Sermanet, Scott Reed, et al.
Going Deeper with Convolutions. CVPR, 2015
https://arxiv.org/abs/1409.4842

GoogleNet算法的架构详解

DL之GoogleNet:GoogleNet算法的架构详解、损失函数、网络训练和学习之详细攻略

1、网络架构

  • 网络配置:深度增加到22层。网络改进的地方包括9个Inception模块的堆叠、采用辅助分类器、无全连接层而采用平均池化层。
  • 网络规模:总的参数仅为AlexNet的1/12。

2、Inception模块:
多尺度多层次滤波,包括使用1*1的卷积来进行降维+在多个尺寸上同时进行卷积再聚合。

3、实验结果:top-5错误率为6.67%。

GoogleNet算法的案例应用

后期更新……

GoogleNet网络结构大图

DL之GoogleNet:GoogleNet(InceptionV1)算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略相关推荐

  1. DL之Encoder-Decoder:Encoder-Decoder结构的相关论文、设计思路、关键步骤等配图集合之详细攻略

    DL之Encoder-Decoder:Encoder-Decoder模型的相关论文.设计思路.关键步骤等配图集合之详细攻略 目录 Encoder-Decoder模型的相关论文 Encoder-Deco ...

  2. DL之InceptionV2/V3:InceptionV2 InceptionV3算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之InceptionV2/V3:InceptionV2 & InceptionV3算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 InceptionV2 & ...

  3. DL之FCN:FCN算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之FCN:FCN算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 FCN算法的简介(论文介绍) 0.FCN性能-实验结果 1.全卷积神经网络的特点.局限性.缺点 FCN算法的架 ...

  4. DL之ResNet:ResNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之ResNet:ResNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 ResNet算法的简介 1.比赛结果-ResNets @ ILSVRC & COCO 20 ...

  5. DL之VGGNet:VGGNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之VGGNet:VGGNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 VGG系列神经网络算法简介 1.网络架构 2.实验结果 VGG系列神经网络的架构详解 VGG系列集 ...

  6. DL之DilatedConvolutions:Dilated Convolutions(膨胀卷积/扩张卷积)算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之DilatedConvolutions:Dilated Convolutions(膨胀卷积/扩张卷积)算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 Dilated Con ...

  7. DL之ShuffleNetV2:ShuffleNetV2算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之ShuffleNetV2:ShuffleNetV2算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 ShuffleNetV2算法的简介(论文介绍) 1.论文特点 2.基于硬件 ...

  8. DL之ShuffleNet:ShuffleNet算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之ShuffleNet:ShuffleNet算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 相关文章 DL之ShuffleNet:ShuffleNet算法的简介(论文介绍).架构详 ...

  9. DL之MobileNetV2:MobileNetV2算法的简介(论文介绍)、架构详解、案例应用等配图集合之详细攻略

    DL之MobileNet V2:MobileNet V2算法的简介(论文介绍).架构详解.案例应用等配图集合之详细攻略 目录 MobileNetV2算法的简介(论文介绍) MobileNet V2算法 ...

最新文章

  1. initrd映像文档的作用和制作
  2. ENAS加载自己的数据集之路
  3. 在Windows平台下使用安装GCC
  4. 用C++/CLI搭建C++和C#之间的桥梁(一)—— 简介
  5. JS原型继承和类式继承
  6. 解決BufferedReader读取UTF-8文件中文乱码(转)
  7. 最大后验概率和极大似然
  8. java 发邮件_java实现邮件的发送
  9. python摄像头识别快递单号查询_免费对接快递鸟api单号识别查询接口(python)
  10. java+jxls利用excel模版进行导出
  11. 如何复制网页不让复制的文字
  12. 【软考】中级软件设计师的一些知识点笔记(22.2.10)
  13. Oracle数据库分页
  14. [UE4]Viewport中摄像机镜头缩放速度修改
  15. 关于python的各个常用软件——python、pycharm、anaconda
  16. Android 隐藏 返回键 Home键 隐藏最下面的NAVIGATION栏
  17. 华为交换机VLAN配置多个端口详细步骤
  18. 【必读推荐】程序员的职业素养
  19. 单片机STM8S测量电压电路_纸张计数测量显示装置+【2019年电赛F题国一获奖作品】...
  20. ArcGIS批量出图操作流程(附练习数据下载)

热门文章

  1. python3 读取文本文件_python3文件的读写操作
  2. mui html5电子签名,关于H5电子签名的实现。
  3. 常见linux网络参数
  4. 安装源码包(这里主要写了redis,其他都一样的操作)
  5. 优化信息流很麻烦?三招教你轻松搞定
  6. Java黄金五年——1~5年一个Java程序员从入行到大牛的晋升之路
  7. 启用nginx status状态详解
  8. MairaDB 函数(二)
  9. 怎么下载学习通上的PDF
  10. linux下查看文件命令小结