[PyTorch] PyTorch Basic - Data Handling
0. 개요 포스팅수가 영 부족해서 양 채우려고 옛날에 공부하면서 적었던 자료 정리해서 올린다. 아마 1.3.0 버전에서 동작하는 코드일 것. variable, autograd 등 없는 버전이다. - Tensor Creation - Indexing, Joining, Slicing, Squeezing - Initialization - Operations : arithmetic, matrix 1. Tensor Creation (0) Basic import torch int_tensor = torch.IntTensor([[0, 0, 0],[1, 1, 1]]) float_tensor = torch.FloatTensor([[0, 0, 0],[1, 1, 1]]) print(int_tensor) print(float_..