Recap
A quick overview of what you have learned, and test it on the provided notebook.
We'll cover the following...
General overview
We have covered a lot of ground in this chapter:
-
Writing a higher-order function that builds functions to perform training steps.
-
Understanding PyTorch’s
Dataset
andTensorDataset
classes, implementing its__init__
,__get_item__
, and__len__
methods. -
Using PyTorch’s
DataLoader
class ...