您好,登錄后才能下訂單哦!
在TensorFlow中,tf.train.exponential_decay函數(shù)實現(xiàn)了指數(shù)衰減學習率,通過這個函數(shù),可以先使用較大的學習率來快速得到一個比較優(yōu)的解,然后隨著迭代的繼續(xù)逐步減小學習率,使得模型在訓練后期更加穩(wěn)定。
tf.train.exponential_decay(learning_rate, global_step, decay_steps, decay_rate, staircase, name)函數(shù)會指數(shù)級地減小學習率,它實現(xiàn)了以下代碼的功能:
#tf.train.exponential_decay函數(shù)可以通過設置staircase參數(shù)選擇不同的學習率衰減方式
#staircase參數(shù)為False(默認)時,選擇連續(xù)衰減學習率:
decayed_learning_rate = learning_rate * math.pow(decay_rate, global_step / decay_steps)
#staircase參數(shù)為True時,選擇階梯狀衰減學習率:
decayed_learning_rate = learning_rate * math.pow(decay_rate, global_step // decay_steps)
①decayed_leaming_rate為每一輪優(yōu)化時使用的學習率;
②leaming_rate為事先設定的初始學習率;
③decay_rate為衰減系數(shù);
④global_step為當前訓練的輪數(shù);
⑤decay_steps為衰減速度,通常代表了完整的使用一遍訓練數(shù)據(jù)所需要的迭代輪數(shù),這個迭代輪數(shù)也就是總訓練樣本數(shù)除以每一個batch中的訓練樣本數(shù),比如訓練數(shù)據(jù)集的大小為128,每一個batch中樣例的個數(shù)為8,那么decay_steps就為16。
當staircase參數(shù)設置為True,使用階梯狀衰減學習率時,代碼的含義是每完整地過完一遍訓練數(shù)據(jù)即每訓練decay_steps輪,學習率就減小一次,這可以使得訓練數(shù)據(jù)集中的所有數(shù)據(jù)對模型訓練有相等的作用;當staircase參數(shù)設置為False,使用連續(xù)的衰減學習率時,不同的訓練數(shù)據(jù)有不同的學習率,而當學習率減小時,對應的訓練數(shù)據(jù)對模型訓練結(jié)果的影響也就小了。
接下來看一看tf.train.exponential_decay函數(shù)應用的兩種形態(tài)(省略部分代碼):
①第一種形態(tài),global_step作為變量被優(yōu)化,在這種形態(tài)下,global_step是變量,在minimize函數(shù)中傳入global_step將自動更新global_step參數(shù)(global_step每輪迭代自動加一),從而使得學習率也得到相應更新:
import tensorflow as tf . . . #設置學習率 global_step = tf.Variable(tf.constant(0)) learning_rate = tf.train.exponential_decay(0.01, global_step, 16, 0.96, staircase=True) #定義反向傳播算法的優(yōu)化方法 train_step = tf.train.AdamOptimizer(learning_rate).minimize(cross_entropy, global_step=global_step) . . . #創(chuàng)建會話 with tf.Session() as sess: . . . for i in range(STEPS): . . . #通過選取的樣本訓練神經(jīng)網(wǎng)絡并更新參數(shù) sess.run(train_step, feed_dict={x:X[start:end], y_:Y[start:end]}) . . .
②第二種形態(tài),global_step作為占位被feed,在這種形態(tài)下,global_step是占位,在調(diào)用sess.run(train_step)時使用當前迭代的輪數(shù)i進行feed:
import tensorflow as tf . . . #設置學習率 global_step = tf.placeholder(tf.float32, shape=()) learning_rate = tf.train.exponential_decay(0.01, global_step, 16, 0.96, staircase=True) #定義反向傳播算法的優(yōu)化方法 train_step = tf.train.AdamOptimizer(learning_rate).minimize(cross_entropy) . . . #創(chuàng)建會話 with tf.Session() as sess: . . . for i in range(STEPS): . . . #通過選取的樣本訓練神經(jīng)網(wǎng)絡并更新參數(shù) sess.run(train_step, feed_dict={x:X[start:end], y_:Y[start:end], global_step:i}) . . .
總結(jié)
以上所述是小編給大家介紹的TensorFlow實現(xiàn)指數(shù)衰減學習率的方法,希望對大家有所幫助!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。