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.
- 1. Environment
- 2. Tensor
- 3. Autograd
- 4. Data
- 5. Transformation
- 6. Loss function
- 7. Optimizer
- 8. Scheduler
- 9. Models, Convolutional Neural Networks
- 10. Saving and Loading Models
- 11. Learning
- 12. Recurrent Neural Network
- 13. Generative Adversarial Network
- 14. Neural Transfer
- 15. Object Detection
- 16. Tensorboard
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}}