python Tensorflow #선언,출력,Rank,Shape
tensorflow in pythonimport. import tensorflow as tf 이러면 tf 로 tensorflow 를 사용할 수 있다. hello_py = tf.constant('hellow, Tensorflow')print(hello_py) 를 실행하면 'hellow, Tensorflow' 가 출력될것 같지만, 아래와 같이 출력된다. Tensor("Const:0", shape=(), dtype=string) [참고]session 을 만들어서 실행해야함. 그전까진 실제 계산을 하지 않으므로 속도가 빠르다고함.session 에 대해서는 다음 장에서~ 텐서는 랭크 Rank, 셰이프 Shape 라는 개념이 있다.Rank 는 차원의 수. 1차원, 2차원, 3차원...Shape 는 각 차원의 요소 ..
2019. 1. 6.