This is a workbook for the one who wants a quick start into PyTorch. What will be covered in this section? # Attributes
`torch.ndim`, `tensor.shape`, `tensor.dtype`, `tensor.device`
# Methods
`torch.tensor()`, `scalar.item()`, `torch.rand()`, `torch.ones()`,
`torch.zeros()`, `torch.zeros_like()`, `torch.ones()`, `torch.arange()`,
`torch.ones_like()`, `tensor.type()` # Import PyTorch
import torch
# Scalar, Vector, Matrix, Tensor Creation. You will…