What are Tensors in PyTorch?
Tensors are data __ similar to a__ and m__.
Tensors are specialized data structure similar to arrays and matrices.
In PyTorch, what are Tensors normally used for?
Give 2 uses.
What does Datasets do?
It __ the __ and their __.
It stores the samples and their corresponding labels
What does DataLoader do?
It wraps an iterable around the __ to enable __ to the samples.
It wraps an iterable around the Dataset to enable easy access to the samples.
What does ‘transforms’ do?
To perform some __ of the __ and make it suitable for __ the model.
To perform some manipulation of the data and make it suitable for training the model.
What is torch.autograd?
It enables __ differentiation, making it possible to __ how changes in __ affect the __, essential for __ __ __.
It enables automatic differentiation, making it possible to compute how changes in inputs affect the outputs, essential for optimizing neural networks.
What is the typical training procedure for a NN?
weight = weight - learning_rate * gradientweight = weight - learning_rate * gradient