[section_2_lab] 머신러닝 Linear Regression 실습
Cost(w,b)가 최소가 되는 w,b 구하기(상수 이용) x, y가 각 각 1, 2, 3(상수)일때 Cost(w,b)가 최소가 되는 w,b를 구한다.tf.placeholder을 변수로, tf.Variable을 trainable로 이해하면 좋다.# -*- coding: utf-8 -*- import tensorflow as tf # X and Y data : 넣고자 하는 데이터 set x_train = [1, 2, 3] y_train = [1, 2, 3] # 최종적으로 구하고자 하는 w,b 변수 W = tf.Variable(tf.random_normal([1]), name='weight') b = tf.Variable(tf.random_normal([1]), name='bias') # Our hypoth..
2018. 6. 1.