tensorflow 滑動平均模型

注: 1.影子變量的功能是記錄滑動平均值,滑動平均值並不會改變原始變量的值 2.decay的更新並不是遞歸... import tensorflow as tf v1 = tf.Variable(0, dtype = tf.float32)#定義變量用來計算滑動平均,初始化爲0,shadow_variable = 0 step = tf.Variable(0, trainable = False)
相關文章
相關標籤/搜索