728x90
728x170
아래 내용의 코딩이 있어 실행해 봤다.
작업시간이 조금 걸린다. 그래픽카드가 1050ti 라서 ㅜㅠ
코드내용
import tensorflow as tf
sess.run(train)
if step % 20 == 0:
print(step, sess.run(W), sess.run(b))
import numpy as np
x_data = np.random.rand(100).astype(np.float32)
y_data = x_data*0.1+0.3
W = tf.Variable(tf.random_uniform([1],-1.0,1.0))
b = tf.Variable(tf.zeros([1]))
y = W* x_data + b
loss = tf.reduce_mean(tf.square(y-y_data))
optimizer = tf.train.GradientDescentOptimizer(0.5)
train = optimizer.minimize(loss)
init = tf.global_variables_initializer()
sess = tf.Session()
sess.run(init)
sess.run(train)
if step % 20 == 0:
print(step, sess.run(W), sess.run(b))
참고.. (주석)
728x90
그리드형
'TensorFlow Python' 카테고리의 다른 글
[NAVER CLOUD PLATFORM] TensorFlow 가 설치된 CentOS 서버 설치 (0) | 2017.10.14 |
---|---|
(TensorFlow) MNIST set 다운 (0) | 2017.10.12 |
(TensorFlow) Windows 10 에 Tensorflow GPU 설치하기 (0) | 2017.10.11 |
(Python) Visual Studio 에서 Python 코딩하기 - 샘플코딩 (0) | 2017.05.12 |
(Python) Visual Studio 에서 Python 코딩하기 - 환경설정 (0) | 2017.05.10 |