모두의 딥러닝 시즌2 [PyTorch] Lab-01-1 Tensor Manipulation 1
모든 데이터는 텐서로 표현할 수 있다. 넘파이리뷰 1D Array with NumPy 우선 넘파이를 임포트 해줘야 한다. import numpy as np import torch print('Rank of t: ', t.ndim) print('Shape of t: ', t.shape) 랭크가 의미하는것은 텐서의 차원을 의미하고 1차원으로 나열했기 때문에 랭크를 조회해보면 1로 결과가 나올것이다. shape는 몇 개의 열이 있는가를 조회할 수 있다. print('t[0] t[1] t[-1] = ', t[0], t[1], t[-1]) # Element print('t[2:5] t[4:-1] = ', t[2:5], t[4:-1]) # Slicing print('t[:2] t[3:] = ', t[:2], t[3..