티스토리 뷰
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
|
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
import matplotlib.pyplot as plt
class GradientDescent:
@staticmethod
def execute():
X = [1., 2., 3.]
Y = [1., 2., 3.]
m = len(X)
W = tf.placeholder(tf.float32)
hypothesis = tf.multiply(X, W)
cost = tf.reduce_mean(tf.pow(hypothesis - Y, 2)) / m
W_val = []
cost_val = []
with tf.Session() as sess:
init = tf.global_variables_initializer()
sess.run(init)
for i in range(-30, 50):
W_val.append(i * 0.1)
cost_val.append(sess.run(cost, {W: i * 0.1}))
plt.plot(W_val, cost_val, 'ro')
plt.ylabel('COST')
plt.xlabel('W')
plt.savefig('./data/result.svg')
print('경사하강법 종료')
return '종료'
if __name__ == '__main__':
GradientDescent.execute()
|
cs |
'5. 파이썬' 카테고리의 다른 글
[구글코랩] GAN 파일 업로드 (0) | 2020.05.22 |
---|---|
딥러닝/2020/텔아비브/ 코랩(Colab) 머신러닝 개발 설정하기 (0) | 2020.05.22 |
[텐서플로] 인공지능 계산기 (0) | 2020.05.16 |
[텐서플로2] MNIST 예제 tf2_function.py (0) | 2020.05.14 |
[텐서플로2] 회귀분석 예제 regression.py (0) | 2020.05.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Git
- maven
- AWS
- KAFKA
- SpringBoot
- Mlearn
- Oracle
- Algorithm
- springMVC
- ERD
- Python
- COLAB
- JUnit
- Django
- vscode
- database
- terms
- Java
- docker
- intellij
- SQLAlchemy
- FLASK
- React
- JPA
- jQuery
- Mongo
- mariadb
- tensorflow
- nodejs
- Eclipse
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함