当前位置:网站首页>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-经典卷积神经网络
边栏推荐
- 三维坐标系距离
- Dart 异常详解
- my creative day
- 旋度(7)连接失败localhost8080;连接拒绝了
- "By sharing" northwestern university life service | | bytes a second interview on three sides by HR
- curl (7) Failed connect to localhost8080; Connection refused
- 插入排序—直接插入排序和希尔排序
- MySQL row locks and gap locks
- 表的创建、修改与删除
- Go 支持 OOP: 用 struct 代替 class
猜你喜欢
随机推荐
LeetCode240+312+394
研发过程中的文档管理与工具
金山打字通 官网 下载
最小生成树
阿里三面:MQ 消息丢失、重复、积压问题,该如何解决?
I have three degrees, and I have five faces. I was "confessed" by the interviewer, and I got an offer of 33*15.
Introduction to the basic principles, implementation and problem solving of crawler
mysql中添加字段的相关问题
阿里云李飞飞:中国云数据库在很多主流技术创新上已经领先国外
电磁兼容简明教程(6)测试项目
Electromagnetic compatibility introductory tutorial (6) test project
POJ1287联网题解
GO错误处理方式
NIO编程
VoLTE基础学习系列 | 企业语音网简述
类似 MS Project 的项目管理工具有哪些
Detailed explanation of the crawler framework Scrapy
案例实践 --- Resnet经典卷积神经网络(Mindspore)
特殊的日子,值得纪念
表的创建、修改与删除



















