PyTorch, No Tears
Preface
This book is to teach students how program in PyTorch. To follow along and execute the code samples, you will need Docker installed. The Docker container is located on Docker Hub. After you have installed Docker, you may run the container as follows.
docker run -it \
-p 8888:8888 \
-p 6006:6006 \
--gpus all \
oneoffcoder/book-pytorch-intro-gpu
Note that this Docker container has Jupyter Lab running on port 8888. You may access Jupyter Lab at http://localhost:8888 when the Docker container is running.
The diagram below shows the PyTorch learning path from tensors and automatic differentiation into data pipelines, optimization, model building, and more specialized deep learning applications.
That ordering mirrors real PyTorch work: understand tensors first, then build the training loop, and only then take on larger end-to-end architectures.
Foundations
Training
Performance and Scaling
Models, Persistence, and Deployment
Evaluation and Reliability
Text and Language
Graphs
Forecasting and Recommendation
Vision and Generative Models
About
One-Off Coder is an educational, service and product company. Please visit us online to discover how we may help you achieve life-long success in your personal coding career or with your company’s business goals and objectives.
Copyright
Cite this book as follows.:
@misc{oneoffcoder_pytorch_intro_2019,
title={PyTorch, No Tears},
url={https://learn-pytorch.oneoffcoder.com},
author={One-Off Coder},
year={2019},
month={Oct}}