오픈소스 머신 러닝 프레임워크인 PyTorch에 대해 알아보자. Tensor PyTorch에서 사용하는 자료구조이다. Numpy의 ndarray와 유사한 개념으로 사용된다. numpy import numpy as np n_array = np.arange(10).reshape(2, 5) print(n_array) # 출력: # [[0 1 2 3 4] # [5 6 7 8 9]] print(f"ndim : {n_array.ndim}, shape : {n_array.shape}") # 출력: ndim : 2, shape : (2, 5) pytorch import torch t_array = torch.FloatTensor(np.arange(10).reshape(2, 5)) print(t_array) # 출력: ..