Lab_01: Tensor Manipulation
PyTorch로 Tensor 생성하기1차원 Tensort = torch.FloatTensor([0,1,2,3,4,5,6])# tensor([0., 1., 2., 3., 4., 5., 6.]) 2차원 Tensort = torch.FloatTensor([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]])# tensor([[ 1., 2., 3.],# [ 4., 5., 6.],# [ 7., 8., 9.],# [10., 11., 12.]]) Multiplication vs Matrix Multiplicat..
2025. 1. 3.