使用余弦衰减时间表的 LearningRateSchedule。
用法
tf.keras.optimizers.schedules.CosineDecay(
initial_learning_rate, decay_steps, alpha=0.0, name=None
)
返回
-
一个 1-arg 可调用学习率计划,它采用当前优化器步骤并输出衰减的学习率,一个与
initial_learning_rate
类型相同的标量Tensor
。
参数
-
initial_learning_rate
标量float32
或float64
张量或 Python 数字。初始学习率。 -
decay_steps
标量int32
或int64
Tensor
或 Python 编号。要衰减的步数。 -
alpha
标量float32
或float64
张量或 Python 数字。最小学习率值作为initial_learning_rate 的一部分。 -
name
String 。操作的可选名称。默认为'CosineDecay'。
参见 Loshchilov & Hutter, ICLR2016, SGDR:Stochastic Gradient Descent with Warm Restarts。
在训练模型时,随着训练的进行降低学习率通常很有用。给定提供的初始学习率,此计划将余弦衰减函数应用于优化器步骤。它需要一个step
值来计算衰减的学习率。您可以只传递一个 TensorFlow 变量,该变量在每个训练步骤中递增。
该计划是一个 1-arg 可调用对象,当通过当前优化器步骤时会产生衰减的学习率。这对于在优化器函数的不同调用中更改学习率值很有用。它被计算为:
def decayed_learning_rate(step):
step = min(step, decay_steps)
cosine_decay = 0.5 * (1 + cos(pi * step / decay_steps))
decayed = (1 - alpha) * cosine_decay + alpha
return initial_learning_rate * decayed
示例用法:
decay_steps = 1000
lr_decayed_fn = tf.keras.optimizers.schedules.CosineDecay(
initial_learning_rate, decay_steps)
您可以将此计划直接传递到 tf.keras.optimizers.Optimizer
作为学习率。学习率计划也可以使用 tf.keras.optimizers.schedules.serialize
和 tf.keras.optimizers.schedules.deserialize
进行序列化和反序列化。
相关用法
- Python tf.keras.optimizers.schedules.CosineDecayRestarts用法及代码示例
- Python tf.keras.optimizers.schedules.serialize用法及代码示例
- Python tf.keras.optimizers.schedules.ExponentialDecay用法及代码示例
- Python tf.keras.optimizers.schedules.PiecewiseConstantDecay用法及代码示例
- Python tf.keras.optimizers.schedules.deserialize用法及代码示例
- Python tf.keras.optimizers.schedules.PolynomialDecay用法及代码示例
- Python tf.keras.optimizers.schedules.InverseTimeDecay用法及代码示例
- Python tf.keras.optimizers.serialize用法及代码示例
- Python tf.keras.optimizers.Optimizer.set_weights用法及代码示例
- Python tf.keras.optimizers.Adam用法及代码示例
- Python tf.keras.optimizers.Adamax用法及代码示例
- Python tf.keras.optimizers.SGD用法及代码示例
- Python tf.keras.optimizers.Optimizer用法及代码示例
- Python tf.keras.optimizers.Nadam用法及代码示例
- Python tf.keras.optimizers.RMSprop用法及代码示例
- Python tf.keras.optimizers.Optimizer.apply_gradients用法及代码示例
- Python tf.keras.optimizers.Ftrl用法及代码示例
- Python tf.keras.optimizers.Optimizer.get_weights用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.optimizers.schedules.CosineDecay。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。