텐서 함수 조금 정리. 생성, 타입, select, cat, stack
각종 텐서 다루는 함수 정리 참고한 문서들 http://www.gisdeveloper.co.kr/?p=8392 잘 정리되어있음 추천!! # 텐서 생성 1. torch.rand(2,3) 그냥 난수 값으로 2*3 텐서 생성 2. torch.randn(2,3) 정규분포 따른 난수 값 3. torch.randint(0,10,size=(2,3)) 정수값으로 이루어진 난수값 4. torch.zeros(2,3) 5. torch.zeros_like(other_tensor) 6. torch.ones_like(other_tensor) # 텐서 타입 1. tf.type() # torch.FloatTensor 2. type(tf) # 3. tf.type(dtype=torch.IntTensor) int type으로 타입을 변경..