當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.compat.v1.train.natural_exp_decay用法及代碼示例


將自然 index 衰減應用於初始學習率。

用法

tf.compat.v1.train.natural_exp_decay(
    learning_rate, global_step, decay_steps, decay_rate, staircase=False, name=None
)

參數

  • learning_rate 標量 float32float64 Tensor 或 Python 編號。初始學習率。
  • global_step 一個 Python 編號。用於衰減計算的全局步驟。不得為負。
  • decay_steps 多久應用一次衰減。
  • decay_rate 一個 Python 編號。衰減率。
  • staircase 是否在離散的樓梯中應用衰減,而不是連續的時尚。
  • name String 。操作的可選名稱。默認為'ExponentialTimeDecay'。

返回

  • learning_rate 類型相同的標量 Tensor 。衰減的學習率。

拋出

  • ValueError 如果未提供 global_step

在訓練模型時,通常建議隨著訓練的進行降低學習率。此函數將 index 衰減函數應用於提供的初始學習率。它需要一個global_step 值來計算衰減的學習率。您可以隻傳遞一個 TensorFlow 變量,該變量在每個訓練步驟中遞增。

該函數返回衰減的學習率。它被計算為:

decayed_learning_rate = learning_rate * exp(-decay_rate * global_step /
decay_step)

或者,如果 staircaseTrue ,則為:

decayed_learning_rate = learning_rate * exp(-decay_rate * floor(global_step /
decay_step))

示例:以 0.96 為底的 index 衰減:

...
global_step = tf.Variable(0, trainable=False)
learning_rate = 0.1
decay_steps = 5
k = 0.5
learning_rate = tf.compat.v1.train.natural_exp_decay(learning_rate,
global_step,
                                           decay_steps, k)

# Passing global_step to minimize() will increment it at each step.
learning_step = (
    tf.compat.v1.train.GradientDescentOptimizer(learning_rate)
    .minimize(...my loss..., global_step=global_step)
)

eager模式兼容性

當啟用即刻執行時,此函數返回一個函數,該函數又返回衰減的學習率張量。這對於在優化器函數的不同調用中更改學習率值很有用。

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.train.natural_exp_decay。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。