楼主: hopui2017
1286 1

Introduction to Deep Learning深度学习 [推广有奖]

  • 10关注
  • 3粉丝

硕士生

8%

还不是VIP/贵宾

-

威望
0
论坛币
2381 个
通用积分
11.9105
学术水平
2 点
热心指数
2 点
信用等级
2 点
经验
598 点
帖子
61
精华
0
在线时间
142 小时
注册时间
2017-10-19
最后登录
2024-3-2

相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
出售关于深度学习的一本书 Introduction to Deep Learning(也可以拿A Beginner's Guide to Generalized Additive Mixed Models with R(2014)    ISBN: 9780957174153 Add to Citavi project by ISBN  或者 Beginner's Guide to Generalized Additive Models with R (2012)        ISBN: 780957174122来换该书
作者:Sandro Skansi

2018_Book_IntroductionToDeepLearning.pdf (2.46 MB, 需要: 27 个论坛币)


封面
深度学习.JPG
目录
Contents
1 From Logic to Cognitive Science . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1 The Beginnings of Artificial Neural Networks . . . . . . . . . . . . . . 1
1.2 The XOR Problem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.3 From Cognitive Science to Deep Learning . . . . . . . . . . . . . . . . . 8
1.4 Neural Networks in the General AI Landscape. . . . . . . . . . . . . . 11
1.5 Philosophical and Cognitive Aspects . . . . . . . . . . . . . . . . . . . . . 12
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
2 Mathematical and Computational Prerequisites . . . . . . . . . . . . . . . . 17
2.1 Derivations and Function Minimization . . . . . . . . . . . . . . . . . . . 17
2.2 Vectors, Matrices and Linear Programming . . . . . . . . . . . . . . . . 25
2.3 Probability Distributions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
2.4 Logic and Turing Machines . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
2.5 Writing Python Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
2.6 A Brief Overview of Python Programming. . . . . . . . . . . . . . . . . 43
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
3 Machine Learning Basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
3.1 Elementary Classification Problem . . . . . . . . . . . . . . . . . . . . . . . 51
3.2 Evaluating Classification Results . . . . . . . . . . . . . . . . . . . . . . . . 57
3.3 A Simple Classifier: Naive Bayes. . . . . . . . . . . . . . . . . . . . . . . . 59
3.4 A Simple Neural Network: Logistic Regression . . . . . . . . . . . . . 61
3.5 Introducing the MNIST Dataset . . . . . . . . . . . . . . . . . . . . . . . . . 68
3.6 Learning Without Labels: K-Means . . . . . . . . . . . . . . . . . . . . . . 70
3.7 Learning Different Representations: PCA . . . . . . . . . . . . . . . . . . 72
3.8 Learning Language: The Bag of Words Representation . . . . . . . 75
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
4 Feedforward Neural Networks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
4.1 Basic Concepts and Terminology for Neural Networks . . . . . . . 79
4.2 Representing Network Components with Vectors
and Matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
4.3 The Perceptron Rule . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
4.4 The Delta Rule . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
xi
4.5 From the Logistic Neuron to Backpropagation . . . . . . . . . . . . . . 89
4.6 Backpropagation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
4.7 A Complete Feedforward Neural Network . . . . . . . . . . . . . . . . . 102
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
5 Modifications and Extensions to a Feed-Forward Neural
Network . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
5.1 The Idea of Regularization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
5.2 L1 and L2 Regularization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109
5.3 Learning Rate, Momentum and Dropout. . . . . . . . . . . . . . . . . . . 111
5.4 Stochastic Gradient Descent and Online Learning . . . . . . . . . . . 116
5.5 Problems for Multiple Hidden Layers: Vanishing
and Exploding Gradients . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 118
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
6 Convolutional Neural Networks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
6.1 A Third Visit to Logistic Regression . . . . . . . . . . . . . . . . . . . . . 121
6.2 Feature Maps and Pooling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125
6.3 A Complete Convolutional Network. . . . . . . . . . . . . . . . . . . . . . 127
6.4 Using a Convolutional Network to Classify Text . . . . . . . . . . . . 130
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132
7 Recurrent Neural Networks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135
7.1 Sequences of Unequal Length . . . . . . . . . . . . . . . . . . . . . . . . . . 135
7.2 The Three Settings of Learning with Recurrent Neural
Networks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
7.3 Adding Feedback Loops and Unfolding a Neural Network . . . . 139
7.4 Elman Networks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 140
7.5 Long Short-Term Memory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142
7.6 Using a Recurrent Neural Network for Predicting
Following Words . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152
8 Autoencoders . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
8.1 Learning Representations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
8.2 Different Autoencoder Architectures . . . . . . . . . . . . . . . . . . . . . . 156
8.3 Stacking Autoencoders . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
8.4 Recreating the Cat Paper . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 161
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163
9 Neural Language Models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
9.1 Word Embeddings and Word Analogies. . . . . . . . . . . . . . . . . . . 165
9.2 CBOW and Word2vec . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
9.3 Word2vec in Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
xii Contents
9.4 Walking Through the Word-Space: An Idea That
Has Eluded Symbolic AI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
10 An Overview of Different Neural Network Architectures. . . . . . . . . 175
10.1 Energy-Based Models. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
10.2 Memory-Based Models. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 178
10.3 The Kernel of General Connectionist Intelligence:
The bAbI Dataset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 181
References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 182
11 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
11.1 An Incomplete Overview of Open Research Questions . . . . . . . 185
11.2 The Spirit of Connectionism and Philosophical Ties . . . . . . . . . 186
Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:introduction troduction Learning earning Learn deep learning ;深度学习;资源交换

已有 1 人评分论坛币 收起 理由
zhou_yl + 80 精彩帖子

总评分: 论坛币 + 80   查看全部评分

沙发
zhou_yl 发表于 2020-10-4 18:39:12 来自手机 |只看作者 |坛友微信交流群
谢谢分享

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加JingGuanBbs
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-27 23:35