-
a=tf.constant([[1,2,3]]) or a=tf.constant([(((1,2,3)))])
print a.get_shape()
#(1,3) ,둘다 같은 결과가 나온다.
b=tf.constant([1,2,3])
print b.get_shape()
#(3,)
c=tf.constant([[[1,2,3]]])
print c.get_shape()
#(1,1,3)
shape는 행렬의 차원이라고한다
'2017년 > machine learning' 카테고리의 다른 글
기계학습 학습데이터에 대해서 (0) 2017.10.31 머신러닝 기초 (0) 2017.10.31 깨닳음의 시간..ml engine api를 다시보자 (0) 2017.09.12 ml엔진 공부 (0) 2017.09.11 텐서플로우 서빙에 대해 (0) 2017.09.05