吴恩达深度学习2笔记week2——优化算法 Optimization Algorithms
- 2.1 Mini-batch 梯度下降法 Mini-bath gradient descent
- 2.2 理解 mini-batch 梯度下降法 Understanding mini-batch gradient descent
- 2.3 指数加权平均 Exponentially weighted averages
- 2.4 理解指数加权平均 Understanding exponentially weighted averages
- 2.5 指数加权平均的偏差修正 Bias correction in exponentially weighted average
- 2.6 动量梯度下降法 Gradient descent with momentum
- 2.7 RMS prop——root mean square(均方根) prop——消除梯度下降中的摆动
- 2.8 Adam 优化算法 Adam optimization algorithm
- 2.9 学习率衰减 Learning rate decay
- 2.10 局部最优的问题 The problem of local optima
2.1 Mini-batch 梯度下降法 Mini-bath gradient descent

- 向量化一次性解决1000个样本问题

2.2 理解 mini-batch 梯度下降法 Understanding mini-batch gradient descent

- mini-batch size
Batch gradient descend:mini-batch size=m
随机梯度下降:mini-batch size=1


2.3 指数加权平均 Exponentially weighted averages

2.4 理解指数加权平均 Understanding exponentially weighted averages

- 指数衰减函数 an exponentially decaying function


2.5 指数加权平均的偏差修正 Bias correction in exponentially weighted average

2.6 动量梯度下降法 Gradient descent with momentum


2.7 RMS prop——root mean square(均方根) prop——消除梯度下降中的摆动

- 超参数

2.9 学习率衰减 Learning rate decay

-
学习率下降方法1

-
指数衰减 exponential decay

2.10 局部最优的问题 The problem of local optima
- 导数为0可能是鞍点saddle point,而不是局部最优解


博客围绕深度学习展开,介绍了Mini-batch梯度下降法,包括不同的mini-batch size情况。还阐述了指数加权平均及其偏差修正,以及动量梯度下降法、RMS prop、Adam优化算法等。此外,提及学习率衰减方法和局部最优问题,指出导数为0可能是鞍点。
286

被折叠的 条评论
为什么被折叠?



