참고링크 : 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 사용:
'딥러닝 > 파이토치' 카테고리의 다른 글
파이토치 튜토리얼: Optional: Data Parallelism (2) | 2018.05.11 |
---|---|
파이토치 튜토리얼: Training a classifier (0) | 2018.05.09 |
파이토치 튜토리얼: Neural Networks (1) | 2018.05.04 |
파이토치 튜토리얼 Autograd:automatic differentiation (0) | 2018.05.04 |
파이토치 시작 (0) | 2018.05.04 |