-
Notifications
You must be signed in to change notification settings - Fork 9
/
regression_W.py
46 lines (34 loc) · 1.14 KB
/
regression_W.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import numpy as np
import matplotlib.pyplot as plt
#import tensorflow as tf
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
# print(tf.__version__)
X = np.array([1., 2., 3.])
Y = np.array([1., 2., 3.])
m = len(X)
W = tf.placeholder(tf.float32)
#hypothesis = tf.mul(W, X)
hypothesis = W*X
cost = tf.reduce_sum(tf.pow(hypothesis-Y, 2)) / m
init = tf.initialize_all_variables()
sess = tf.Session()
sess.run(init)
# 그래프로 표시하기 위해 데이터를 누적할 리스트
W_val, cost_val = [], []
# 0.1 단위로 증가할 수 없어서 -30부터 시작. 그래프에는 -3에서 5까지 표시됨.
for i in range(-30, 50):
xPos = i*0.1 # x 좌표. -3에서 5까지 0.1씩 증가
yPos = sess.run(cost, feed_dict={W: xPos}) # x 좌표에 따른 y 값
print('{:3.1f}, {:3.1f}'.format(xPos, yPos))
# 그래프에 표시할 데이터 누적. 단순히 리스트에 갯수를 늘려나감
W_val.append(xPos)
cost_val.append(yPos)
sess.close()
#np.where(np.round(cost_val, 2) == 0.0)
#W_val[40]
plt.plot(W_val, cost_val)
plt.xlabel('W')
plt.ylabel('cost')
plt.grid()
plt.show()