当前位置:网站首页>Chapter 9 of Huawei Deep Learning Course - Convolutional Neural Network and Case Practice
Chapter 9 of Huawei Deep Learning Course - Convolutional Neural Network and Case Practice
2022-08-01 07:27:00 【swl. Crow】
目录
第一节 Convolutional Neural Networks Review Summary
前言
This course refers to learning Huawei Deep Learning Course
第一节 Convolutional Neural Networks Review Summary
This section briefly describes the network layers of a convolutional neural network、The core ideas and advantages are reviewed and summarized
首先,Convolutional Neural Networks have convolutional layers、池化层和全连接层.
The function of the convolutional layer is to extract the local features of the image;
The role of the pooling layer is to reduce the amount of parameters and solve the problem of image invariance;
The role of the fully connected layer is to map the feature map to a vector,以便分类.
其次,The core idea of convolutional neural network is parameter sharing and local perception.
因此,Convolutional Neural Networks imitate the characteristics of people's local perception of images,Feature extraction is performed through the action of convolution,in order to reduce the redundant amount of information,Understand the salient features of retention.
最后,Convolutional Neural Networks have significant advantages in the field of computer vision,Because it can achieve high-precision recognition and can automatically extract features(The traditional image processing is to extract features based on certain rules).
第二节 经典的CNN网络
The development of deep learning and convolutional neural networks is inseparableILSVRC比赛,with the competition,Many classic convolutional neural networks have emerged.
AlexNet
(1)网络结构:
Because at that time the network structure appeared,Chip performance is not very powerful,所以最早AlexNetThe structure adopts the design of data shunting.
(2)特点:
- 使用ReLU函数代替了Sigmoid激活函数,实现快速收敛.
- design overlappingPooling,即stride<kernel size,Overfitting can be reduced.
- 进行了数据增强,能够防止过拟合.
- designed a stepDropout,Randomly drop certain neurons,防止过拟合.
VGGNet
(1)网络结构:
(2)特点:
VGGNetNeural Networks starring research on the effect of depth on convolutional networks,使用3*3卷积核,Convolution is repeated continuously、池化,最后全连接、Softmax,Get the output probability.
Below are its six configurations:
GoogLeNet
(1)网络结构:
(2)特点:
GoogLeNetWhat is explored are convolution kernels of different sizes、The impact of wider network layers on classification performance.It is proved that more convolutions and deeper layers lead to better structure.
与AlexNetOne of the differences is joiningInception结构:
使用不同大小的卷积核,Extract features of different receptive fields.
ResNet
(1)网络结构:
(2)特点:
The residual structure is designed,It effectively solves the problem of gradient disappearance of deep neural network.
SENet
Not a complete neural network by itself,is a module that can be embedded into other neural networks:
Its structure is added toInceptionThe structure is as follows:
加入到残差结构中:
案例实践
Resnet-经典卷积神经网络
边栏推荐
猜你喜欢

Information system project managers must recite the work of the core test site (56) Configuration Control Board (CCB)

curl (7) Failed connect to localhost8080; Connection refused

Vim扩展内容

插入排序—直接插入排序和希尔排序

爬虫框架 Scrapy 详解

Golang:go模版引擎的使用

Fist game copyright-free music download, League of Legends copyright-free music, can be used for video creation, live broadcast
![Explosive 30,000 words, the hardest core丨Mysql knowledge system, complete collection of commands [recommended collection]](/img/7f/08b323ffc5b5f8e3354bee6775b994.png)
Explosive 30,000 words, the hardest core丨Mysql knowledge system, complete collection of commands [recommended collection]

crypto-js uses

Srping中bean的生命周期
随机推荐
pytest接口自动化测试框架 | 执行失败跳转pdb
my creative day
华为深度学习课程第九章——卷积神经网络以及案例实践
Golang: go to connect and use mysql
微信小程序请求封装
拳头游戏免版权音乐下载,英雄联盟无版权音乐,可用于视频创作、直播
curl (7) Failed connect to localhost8080; Connection refused
【MySQL】操作表DML相关语句
金山打字通 官网 下载
Offer brush questions - 1
选择排序—直接选择排序和堆排序
special day to remember
13 - JUC CountDownLatch concurrent programming
我说过无数遍了:从来没有一种技术是为灵活组合这个目标而设计的
我三本学历,五面阿里,被面试官“供”着出来了,拿了33*15的Offer
rhcsa 第三次
插入排序—直接插入排序和希尔排序
05-SDRAM:仲裁
Golang:go获取url和表单属性值
爬虫基本原理介绍、实现以及问题解决









