[Dive into Deep Learning / 2주차] Tensor Manipulation
작성자 : 16기 하예은 본 포스팅은 다음 자료들을 참고하여 작성되었습니다. - https://youtu.be/b-672791HgA - PyTorch documentation — PyTorch 1.12 documentation - Broadcasting — NumPy v1.23 Manual 1. torch.mm() torch.mm(input, mat2, *, out=None) input과 mat2의 행렬 곱을 연산함 input과 mat2는 2D tensor, 즉 행렬이어야 함 2. torch.bmm() torch.bmm(input, mat2, *, out=None) input과 mat2의 행렬곱을 동시에 병렬로 연산함 input과 mat2는 같은 수의 행렬을 가지는 3D tensor여야 함 3. torc..
심화 스터디/Dive into Deep Learning
2022. 9. 25. 19:20