-
정의
-
텐서란?
-
텐서는 임의의 수의 차원으로 배열된 값들의 집합
- 3 # a rank 0 tensor; this is a scalar with shape []
[1. ,2., 3.] # a rank 1 tensor; this is a vector with shape [3]
[[1., 2., 3.], [4., 5., 6.]] # a rank 2 tensor; a matrix with shape [2, 3]
[[[1., 2., 3.]], [[7., 8., 9.]]] # a rank 3 tensor with shape [2, 1, 3]
- 하위 토픽 2
-
유틸
-
텐서보드
- TensorFlow는 전산 그래프의 그림을 표시
-
placeholder
- placeholder는 나중에 값을 채워주겠다고 하고 우선 형식만 선언해 두는 형태
-
학습 시키기
- 평가 모델을 작성
- 주 토픽 3