12.2 넘파이처럼 텐서플로 사용하기
Tensorflow : tensor가 한 연산에서 다른 연산으로 흐르기 때문에 tensor + flow 가 되었다. Tensor : ndarray와 매우 비슷하고 기본적으로 다차원 배열을 다룬다. 스칼라 값을 가질 수도 있다. 12.2.1 텐서와 연산 텐서 생성 import tensorflow as tf tf.constant([[1,2,3], [4,5,6]]) #matrix # tf.constant()를 통해 tensor를 생성할 수 있다. 텐서는 ndarray와 같이 shape와 dtype을 가진다. 인덱스 참조 t=tf.constant([[1.,2.,3.],[4.,5.,6.]]) t.shape t[:, 1:] # 인덱스 참조 또한 가능하다. 텐서 연산 t=tf.constant([[1.,2.,3.],[..
2021. 9. 29.