여기 첫번째 댓글에 보면 텐서플로우 버전2에서 작동하시는 분들은 import tensorflow as tf 대신에 import tensorflow.compat.v1 as tf tf.disable_v2_behavior() 를 치고 하시면 잘 됩니다. 라고해서 구글 코랩에 import tensorflow.compat.v1 as tf tf.set_random_seed(777) # for reproducibilitywith tf.compat.v1.Session() as sess: x_train = [1,2,3] y_train = [1,2,3] W = tf.Variable(tf.random_normal([1]), name=‘weight’) b = tf.Variable(tf.random_normal([1]), na..