Cheat Sheet
(under construction)
Last updated
(under construction)
Last updated
See also : numpy cheat sheet
Tensors are similar to NumPy’s ndarrays, with the addition being that Tensors can also be used on a GPU to accelerate computing.
See how changing the np array changed the Torch Tensor automatically
There are several options for dataset
load data into a numpy array, then convert this array into a torch.*Tensor
For images, packages such as Pillow, OpenCV are useful
(Recommend) For vision, we have created a package called torchvision
data loaders for common datasets such as Imagenet, CIFAR10, MNIST, etc.
make it a function