경사하강1 tensorflow GradientTape 질문 있습니다. 오늘은 GradientTape 함수에 관련된 질문이 들어왔습니다. 이 함수는 경사하강법이라는 기법을 위한 미분하는 함수입니다. 다음 코드에 내용을 적어놓았으니 읽어보시기 바랍니다. 화이팅입니다~^^ import tensorflow as tf W = tf.Variable(2.9) b = tf.Variable(0.5) learning_rage = 0.01 x_data = [1,2,3,4,5] y_data = [1,2,3,4,5] for i in range(5): with tf.GradientTape() as tape: hypothesis = W * x_data + b cost = tf.reduce_mean(tf.square(hypothesis - y_data)) # hypothesis(가중치)와 정답(y_d.. 2020. 5. 7. 이전 1 다음