(windows10版)Tensorflow 實戰Google深度學習框架學習筆記(四)學習率的設置

#1.學習率爲1的時候,x在5和-5之間震盪 import tensorflow as tf TRAIN_STEPS = 10  #必須用大寫 LEARNING_RATE = 1 #必須用大學 x = tf.Variable(tf.constant(5,dtype = tf.float32), name = "x") y = tf.square(x) train_op = tf.train.Gra
相關文章
相關標籤/搜索