Most PyTorch learning resources are either out-of-date, confusing (why so many official tutorials?) or unnecessarily complicated.
In my opinion, a true gem for learning PyTorch from scratch was the PyTorch Tutorial by Yunjey Choi. Unfortunately, it has been unmaintained for years.
This project aims to follow a similar path by providing a set of bare-bones, self-sufficient, and beginner-friendly examples. They illustrate the core parts of PyTorch in a step-by-step fashion, from tensor manipulation to the training of Deep Learning models. They strive to keep up with API changes and follow good practices.
Rather than Jupyter notebooks, these examples are provided as standalone Python files for the following reasons:
- it facilitates a global understanding of their structure;
- it simplifies formatting, linting, testing, versioning and continuous integration;
- it promotes concision and general code quality.
All examples are heavily commented and accompanied by README
files for an easier follow-through.
You are very welcome to contribute to the improvement of this project through ideas or corrections.
Happy PyTorch learning :)