노는게 제일 좋습니다.
tensorflow 3 : 헬로월드 본문
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라고 나온다. 이런 변태같은..
'Python > 통계 및 데이터관련' 카테고리의 다른 글
tensorflow 6 : multi-variable Linear Regression (2) | 2017.01.15 |
---|---|
tensorflow 5 : Gradient Descent Algorithm (0) | 2017.01.14 |
tensorflow 4 : linear regression (0) | 2017.01.12 |
tensorflow 2 : 텐서플로우 깔기 (0) | 2017.01.05 |
tensorflow 1 : 머신러닝이란 (0) | 2017.01.05 |
Comments