Skip to content

Commit

Permalink
Update lab-04-1-multi_variable_linear_regression.py
Browse files Browse the repository at this point in the history
필요없는 코드라 판단되어 삭제합니다.
  • Loading branch information
qoocrab authored and kkweon committed Sep 30, 2018
1 parent f398407 commit 6a822a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lab-04-1-multi_variable_linear_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
b = tf.Variable(tf.random_normal([1]), name='bias')

hypothesis = x1 * w1 + x2 * w2 + x3 * w3 + b
print(hypothesis)

# cost/loss function
cost = tf.reduce_mean(tf.square(hypothesis - Y))
Expand Down

0 comments on commit 6a822a1

Please sign in to comment.