当前位置:网站首页>easyAI笔记——深度学习
easyAI笔记——深度学习
2022-07-02 15:28:00 【coder_by】
CNN
CNN 的价值:
- 能够将⼤数据量的图⽚有效的降维成⼩数据量(并不影响结果)
- 能够保留图⽚的特征,类似⼈类的视觉原理
CNN 的基本原理:
- 卷积层 – 主要作⽤是保留图⽚的特征
- 池化层 – 主要作⽤是把数据降维,可以有效的避免过拟合
- 全连接层 – 根据不同任务输出我们想要的结果
CNN 的实际应⽤:
- 图⽚分类、检索
- ⽬标定位检测
- ⽬标分割
- ⼈脸识别
RNN
RNN 跟传统神经⽹络最⼤的区别在于每次都会将前⼀次的输出结果,带到下⼀次的隐藏层中。
⻓短期记忆⽹络 – LSTM
在标准的 RNN 中,只有单个 tanh 层,只保留重要的信息。
GRU 是 LSTM 的⼀个变体。保留了 LSTM 划重点,遗忘不重要信息的特点,在long-term 传播的时候也不会被丢失。在训练数据集⽐较⼤的情况下可以节省很多时间。
RNN的独特价值在于:它能有效的处理序列数据。
基于 RNN 出现了 LSTM 和 GRU 等变种算法。这些变种算法主要有⼏个特点:
- ⻓期信息可以有效的保留
- 挑选重要信息保留,不重要的信息会选择“遗忘”
RNN ⼏个典型的应⽤如下: - ⽂本⽣成
- 语⾳识别
- 机器翻译
- ⽣成图像描述
- 视频标记
GANs
初衷:⾃动化
⽣成对抗⽹络(GANs)由2个重要的部分构成:
- ⽣成器(Generator):通过机器⽣成数据(⼤部分情况下是图像),⽬的是“骗过”判别器
- 判别器(Discriminator):判断这张图像是真实的还是机器⽣成的,⽬的是找出⽣成
器做的“假数据”
3个优势
- 能更好建模数据分布(图像更锐利、清晰)
- 理论上,GANs 能训练任何⼀种⽣成器⽹络。其他的框架需要⽣成器⽹络有⼀些特
定的函数形式,⽐如输出层是⾼斯的。 - ⽆需利⽤⻢尔科夫链反复采样,⽆需在学习过程中进⾏推断,没有复杂的变分下
界,避开近似计算棘⼿的概率的难题。
2个缺陷
- 难训练,不稳定。⽣成器和判别器之间需要很好的同步,但是在实际训练中很容易
D收敛,G发散。D/G 的训练需要精⼼的设计。 - 模式缺失(Mode Collapse)问题。GANs的学习过程可能出现模式缺失,⽣成器
开始退化,总是⽣成同样的样本点,⽆法继续学习。
边栏推荐
- Example nonlinear integer programming
- The difference of message mechanism between MFC and QT
- This "architect growth note" made 300 people successfully change jobs and enter the big factory, with an annual salary of 50W
- Income and risk of linear programming example investment
- 什么是软件开发中的 green field 和 brown field 模式 - 绿地开发和棕地开发
- 871. Minimum refueling times
- Easyswoole3.2 restart failed
- The beginning of life
- Listing of chaozhuo Aviation Technology Co., Ltd.: raising 900million yuan, with a market value of more than 6billion yuan, becoming the first science and technology innovation board enterprise in Xia
- executescalar mysql_ExecuteScalar()
猜你喜欢
[shutter] dart data type (dynamic data type)
线性规划例题 投资的收益与风险
Map集合详细讲解
VirtualLab基础实验教程-7.偏振(2)
Microservice architecture practice: Construction of highly available distributed file system fastdfs architecture
Si446 usage record (II): generate header files using wds3
Easyswoole3.2 restart failed
ThreadLocal
VirtualLab基础实验教程-7.偏振(1)
Eye of depth (II) -- matrix and its basic operations
随机推荐
选择 SAP Spartacus 作为 SAP Commerce Cloud Storefront 实现框架的五个理由
Map集合详细讲解
Si446 usage record (I): basic data acquisition
POJ - 1458 Common Subsequence(最长公共子序列)
Sword finger offer 27 Image of binary tree
13、Darknet YOLO3
Qwebengineview crash and alternatives
Goodbye, shucang. Alibaba's data Lake construction strategy is really awesome!
VirtualLab基础实验教程-7.偏振(2)
The difference between class and getClass ()
Chapter 3 of hands on deep learning - (1) linear regression is realized from scratch_ Learning thinking and exercise answers
将您的基于 Accelerator 的 SAP Commerce Cloud Storefront 迁移到 Spartacus
HDU - 1114 Piggy-Bank(完全背包)
【目标跟踪】|SiamFC
dstat使用[通俗易懂]
2022 interview questions
Experience home office, feel the completion of the project | community essay solicitation
si446使用记录(二):使用WDS3生成头文件
Platform management background and business menu resource management: business permissions and menu resource management design
链表求和[dummy+尾插法+函数处理链表引用常见坑位]