1. 정의
    1. 텐서란?
      1. 텐서는 임의의 수의 차원으로 배열된 값들의 집합
        1. 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. 하위 토픽 2
  2. 유틸
    1. 텐서보드
      1. TensorFlow는 전산 그래프의 그림을 표시
    2. placeholder
      1. placeholder는 나중에 값을 채워주겠다고 하고 우선 형식만 선언해 두는 형태
    3. 학습 시키기
      1. 평가 모델을 작성
  3. 주 토픽 3