当前位置:网站首页>9.卷积神经网络介绍
9.卷积神经网络介绍
2022-07-07 23:11:00 【booze-J】
卷积神经网络
概述
卷积神经网络是近年发展起来,并广泛应用于图像处理和NLP等领域的一种多层神经网络。
传统BP处理图像时的问题:
- 1.权值太多,计算量太大
假设使用100X100的图片进行训练,那么100X100大小的图片有10000个像素点,那么构建网络的输入就需要10000个神经元,网络中的隐藏层神经元数目和输入层神经元数目差不多,这样的话,就会有很多的权值需要训练更新。 计算量非常的大。
- 2.权值太多,需要大量样本进行训练
神经元越多,参数就越多,当你的参数越多的时候,就和解方程一样未知参数越多,需要的越多的数据才能够解出未知参数。
既然存在这些问题那怎么办呢?
CNN通过局部感受野和权值共享减少了神经网络需要训练的参数个数。
上方第一张图为全连接神经网络,上方第二张图和下放第一张图为局部连接神经网络。局部连接神经网络相对于全连接神经网络参数更少。
1.卷积核
滤波器,卷积核的作用大家可以理解为就是提取图片一些不同的特征,不同的卷积核可以提取到不同的特征。
2.池化
Pooling常用的三种方式:
max-pooling
-meaning-pooling
stochastic pooling
3.卷积Padding
SAME PADDING
给平面外部补0,卷积窗口采样后得到一个跟原来大小相同的平面
VALID PADDING
不会超出平面外部,卷积窗口采样后得到一个比原来平面小的平面
4.池化Padding
SAME PADDING:可能会给平面外部补0
VALID PADDING:不会超出平面外部
假如有一个28*28的平面,用2*2步长为2的窗口对其进行pooling操作:
使用SAME PADDING的方式,得到14*14的平面;
使用VALID PADDING的方式,得到14*14的平面。假如有一个2*3的平面,用2*2步长为2的窗口对其进行pooling操作:
使用SAME PADDING的方式,得到1*2的平面;
使用VALID PADDING的方式,得到1*1的平面。
5.LeNET-5介绍
LeNET-5是最早的卷积神经网络之一,曾广泛用于美国银行。手写数字识别正确率在99%以上。
边栏推荐
- 基于微信小程序开发的我最在行的小游戏
- 22年秋招心得
- Installation and configuration of sublime Text3
- 语义分割模型库segmentation_models_pytorch的详细使用介绍
- Prompt configure: error: required tool not found: libtool solution when configuring and installing crosstool ng tool
- 大二级分类产品页权重低,不收录怎么办?
- Cancel the down arrow of the default style of select and set the default word of select
- What is load balancing? How does DNS achieve load balancing?
- How does the markdown editor of CSDN input mathematical formulas--- Latex syntax summary
- ReentrantLock 公平锁源码 第0篇
猜你喜欢
接口测试要测试什么?
RPA cloud computer, let RPA out of the box with unlimited computing power?
国外众测之密码找回漏洞
ReentrantLock 公平锁源码 第0篇
Malware detection method based on convolutional neural network
They gathered at the 2022 ecug con just for "China's technological power"
"An excellent programmer is worth five ordinary programmers", and the gap lies in these seven key points
AI遮天传 ML-初识决策树
NVIDIA Jetson测试安装yolox过程记录
Play sonar
随机推荐
5G NR 系统消息
SDNU_ ACM_ ICPC_ 2022_ Summer_ Practice(1~2)
How to insert highlighted code blocks in WPS and word
The method of server defense against DDoS, Hangzhou advanced anti DDoS IP section 103.219.39 x
《因果性Causality》教程,哥本哈根大学Jonas Peters讲授
The standby database has been delayed. Check that the MRP is wait_ for_ Log, apply after restarting MRP_ Log but wait again later_ for_ log
C # generics and performance comparison
Cve-2022-28346: Django SQL injection vulnerability
攻防世界Web进阶区unserialize3题解
新库上线 | CnOpenData中国星级酒店数据
3 years of experience, can't you get 20K for the interview and test post? Such a hole?
接口测试进阶接口脚本使用—apipost(预/后执行脚本)
[Yugong series] go teaching course 006 in July 2022 - automatic derivation of types and input and output
ABAP ALV LVC模板
8道经典C语言指针笔试题解析
基于人脸识别实现课堂抬头率检测
What does interface testing test?
How to add automatic sorting titles in typora software?
Deep dive kotlin synergy (XXII): flow treatment
攻防演练中沙盘推演的4个阶段