Computer scienceData scienceInstrumentsPyTorch

Introduction to PyTorch

Theory

The dimensionality match

Report a typo

Match the Tensor object to it's definition.

Note: you can check the dimensionality via the .shape attribute.

Match the items from left and right columns
a = torch.tensor([0.])
a = torch.tensor([0., torch.pi])
a = torch.tensor([[0., 1.], [0., 1.]])
a = torch.tensor((), dtype=torch.float64).new_zeros((2, 3, 4))
Scalar
Tensor
Vector
Matrix
___

Create a free account to access the full topic