ㅅㄷㄴㅅ
import tensorflow as tf
# --------------------------------------------------------------------
# https://www.tensorflow.org/versions/r0.11/api_docs/python/
# --------------------------------------------------------------------
#-------------------------------------------------- 1. 텐서플로우 기본 Hello,World 출력 p40
#hello = tf.constant("hello, World!") #-- 생성
#sess = tf.Session() #-- 텐서플로우 세션 생성
#print(sess.run(hello)) #-- 출력
#-------------------------------------------------- 2. 텐서플로우로 사칙연산 계산법 p46
#a = tf.placeholder("int32") # --
#b = tf.placeholder("int32") # --
#y = tf.multiply(a, b) #-- a와 b를 곱셈합니다. https://www.tensorflow.org/api_docs/python/tf/multiply
#sess = tf.Session()
#print (sess.run(y, feed_dict={a:2, b:5})) #-- feed_dict :
#-------------------------------------------------- 3. 텐서보드 시각화를 통한 출력 p48
#a = tf.constant(10, name = "a")
#b = tf.constant(2, name = "b")
#y = tf.Variable(a*b, name = "y")
#model = tf.global_variables_initializer #initialize_all_variables() :: https://www.tensorflow.org/api_docs/python/tf/initialize_all_variables
#with tf.Session() as session:
# merged = tf.summary.merge_all() # merge_all_summaries :: https://www.tensorflow.org/api_docs/python/tf/contrib/deprecated/merge_all_summaries
# writer = tf.train.SummaryWriter("/tmp/tensorflowlogs", session.graph)
# session.run(model)
#print (session.run(y))
#-------------------------------------------------- 4.
'◼︎ 개발 > 텐서플로우' 카테고리의 다른 글
[텐서플로우] Open GL과 Open CL (0) | 2017.03.23 |
---|---|
7. [Mac] 에서 텐서플로우(Tensorflow) GPU 설치하기 (0) | 2017.03.22 |
6. 텐서플로우 시작하기 (0) | 2017.03.19 |
5. 김성 머신러닝 git hub 소스 다운로드 받기 (0) | 2017.03.18 |
4. 파이참(Pycharm)에서 텐서플로우 예제 실행해보기 (0) | 2017.03.17 |
3. 파이참(Pycharm)으로 Hello world 찍기 (0) | 2017.03.17 |
1. Tensorflow 윈도우/맥에서 설치하기 (0) | 2017.03.17 |