标签:div step 优化器 guid pretty 用户 ret RoCE stop
优化器的基类(Optimizer base class)主要实现了两个接口,一是计算损失函数的梯度,二是将梯度作用于变量。tf.train 主要提供了如下的优化函数:
TensorFlow 同时也提供了给定 TensorFlow 计算图(computation graph)的导数。上节提到的优化器类(optimizer classes)会自动计算 computation graph 的导数,但用户自定义优化器时,可以使用如下低级别的函数:
tf.train.exponential_decay
# 实现的是如下的操作
decayed_lr = lr * decay_rate ^ (global_step/decay_steps)
在其 tf 下的使用为:
lr = tf.train.exponential_decay(0.1, global_step, 100, .96, staircase=True)
tf.train.inverse_time_decay
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
TensorFlow 实战(二)—— tf train(优化算法)
标签:div step 优化器 guid pretty 用户 ret RoCE stop
原文地址:https://www.cnblogs.com/siwnhwxh/p/10331969.html