Learn practical skills, build real-world projects, and advance your career

This tutorial is Sentdex's tutorial on Pytorch series Link

Introduction - Deep Learning and Neural Networks with Python and Pytorch p.1

 import torch
x = torch.Tensor([5,3])
y = torch.Tensor([2,1])
print(x*y)
z = x*y
print(z.shape)