참고링크 : https://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html#getting-started


1. 두 토치 x, y를 더하는 방법 ( x, y는 (5, 3))


x + y


torch.add(x, y)



2. 더한 값을 저장할 토치를 argument로 넘기는 방법


result = torch.empty(5, 3)

torch.add(x, y, out=result) 



3. _를 접미사로 붙인 모든 연산은 해당 텐서의 값을 바꿈

 즉, x.add_(y), x.copy_() , 등은 x를 바꿈


예)


4. 텐서를 resize/reshape 하려면 torch.view 사용:



+ Recent posts