노는게 제일 좋습니다.

tensorflow 3 : 헬로월드 본문

Python/통계 및 데이터관련

tensorflow 3 : 헬로월드

노는게 제일 좋습니다. 2017. 1. 5. 02:22

Dataflow Graph : 텐서플로우 에서 그리는 그래프.

1. Node : mathmatical operation

2. Edge : multidimensional data array ( = tensor ) communicated between them (뭔소린지 모르겠음)


헬로우월드 코드.

import tensorflow as tf

hello = tf.constant('안녕 이 빌어먹을 세상아')

sess = tf.Session()

print(sess.run(hello))


텐서플로우에서는 모든게 operation이다. 예를 들어.. hello를 출력해보면 '안녕 이 빌어먹을 세상아'가 안나온다.

tensor라고 나온다. 이런 변태같은..

Comments