Torch 튜토리얼
PyTorch 튜토리얼 따라하기(https://9bow.github.io/PyTorch-tutorials-kr-0.3.1/index.html) 'Tensor'는 행렬 연산을 위한 단위이다.예를 들어 초기화되지 않은 5x3 행렬을 생성할 수 있다.1234import torch x = torch.Tensor(5, 3)print(x)cstensor([[1.2901e-36, 0.0000e+00, 5.7453e-44], [0.0000e+00, nan, 3.0352e+32], [1.3733e-14, 6.4076e+07, 2.0706e-19], [7.3909e+22, 2.4176e-12, 1.1625e+33], [8.9605e-01, 1.1632e+33, 5.6003e-02]])또한 행렬의 연산도 지원한다. 12y ..