Recap
A quick overview of what you have learned and testing it on the notebook provided.
General overview
First of all, congratulations are in order! You have successfully implemented a fully functioning model and training loop in PyTorch!
We have covered a lot of ground in this third chapter:
-
Implementing a linear regression in Numpy using gradient descent.
-
Creating tensors in PyTorch, sending them to a device, and making parameters out of them.
-
Understanding PyTorch’s main feature, ...