tf.train.AdamOptimizer 优化器

Posted smallredness

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tf.train.AdamOptimizer 优化器相关的知识,希望对你有一定的参考价值。

adaptive moment estimation(自适应矩估计)

tf.train.AdamOptimizer(
    learning_rate=0.001,
    beta1=0.9,
    beta2=0.999,
    epsilon=1e-08,
    use_locking=False,
    name='Adam'
)
参数:
learning_rate: (学习率)张量或者浮点数
beta1:? 浮点数或者常量张量 ,表示 The exponential decay rate for the 1st moment estimates.
beta2: ?浮点数或者常量张量 ,表示?The exponential decay rate for the 2nd moment estimates.
epsilon: A small constant for numerical stability. This epsilon is "epsilon hat" in the Kingma and Ba paper (in the formula just before Section 2.1), not the epsilon in         Algorithm 1 of the paper.
use_locking: 为True时锁定更新
name: ?梯度下降名称,默认为 "Adam"

以上是关于tf.train.AdamOptimizer 优化器的主要内容,如果未能解决你的问题,请参考以下文章

Tensorflow:如何正确使用 Adam 优化器

神经网络优化算法如何选择Adam,SGD

adamoptimizer是啥训练方法

tensorflow冻结层的方法

tensorflow Optimizer.minimize()和gradient clipping

为啥adam不需要太大的学习率