Linear Regression 첫 번째 예시 소스코드 설명 import tensorflow.compat.v1 as tf print(tf.__version__) # 텐서플로우 사용하기 위해 import tf.disable_v2_behavior() import matplotlib.pyplot as plt # 그래프를 그래기 위해 import x =[1,2,3] y =[1,2,3] w = tf.placeholder(tf.float32) # 입력값x와 출력값y를 선언, w는 float(실수) 형태의 변수로 정의해줌 # 선형모델이 w*x라고 가정 hypothesis = w*x # cost함수 정의 cost = tf.reduce_mean(tf.square(hypothesis - y)) #launch the gra..