|
| 1 | +<p align="center"> |
| 2 | + <a href="http://pytorch.org/" target="_blank"> |
| 3 | + <img width="40%" src="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/logo.png" style="max-width:100%;"> |
| 4 | + </a> |
| 5 | +</p> |
| 6 | + |
| 7 | +--- |
| 8 | + |
| 9 | +<br> |
| 10 | + |
| 11 | +# pyTorch Tutorials |
| 12 | + |
| 13 | +In these tutorials for pyTorch, we will build our first Neural Network and try to build some advanced Neural Network architectures developed recent years. |
| 14 | + |
| 15 | + |
| 16 | +* pyTorch basic |
| 17 | + * [torch and numpy](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/201_torch_numpy.py) |
| 18 | + * [Variable](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/202_variable.py) |
| 19 | + * [Activation](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/203_activation.py) |
| 20 | +* Build your first network |
| 21 | + * [Regression](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/301_regression.py) |
| 22 | + * [Classification](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/302_classification.py) |
| 23 | + * [An easy way](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/303_build_nn_quickly.py) |
| 24 | + * [Save and reload](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/304_save_reload.py) |
| 25 | + * [Train on batch](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/305_batch_train.py) |
| 26 | + * [Optimizers](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/306_optimizer.py) |
| 27 | +* Advanced neural network |
| 28 | + * [CNN](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/401_CNN.py) |
| 29 | + * [RNN-Classification](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/402_RNN_classifier.py) |
| 30 | + * [RNN-Regression](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py) |
| 31 | + * [AutoEncoder](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/404_autoencoder.py) |
| 32 | + * [DQN Reinforcement Learning](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/405_DQN_Reinforcement_learning.py) |
| 33 | +* Others (WIP) |
| 34 | + * [Why torch dynamic](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/501_why_torch_dynamic_graph.py) |
| 35 | + * [Train on GPU](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/502_GPU.py) |
| 36 | + * [Dropout](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/503_dropout.py) |
| 37 | + * [Batch Normalization](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/504_batch_normalization.py) |
| 38 | + |
| 39 | +**For Chinese speakers: All methods mentioned below have their video and text tutorial in Chinese. |
| 40 | +Visit [莫烦 Python](https://morvanzhou.github.io/tutorials/) for more. |
| 41 | +You can watch my [Youtube channel](https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg) as well.** |
| 42 | + |
| 43 | + |
| 44 | +### [Regression](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/301_regression.py) |
| 45 | + |
| 46 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/301_regression.py"> |
| 47 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/1-1-2.gif"> |
| 48 | +</a> |
| 49 | + |
| 50 | +### [Classification](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/302_classification.py) |
| 51 | + |
| 52 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/302_classification.py"> |
| 53 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/1-1-3.gif"> |
| 54 | +</a> |
| 55 | + |
| 56 | +### [RNN](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py) |
| 57 | + |
| 58 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py"> |
| 59 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-3-1.gif" > |
| 60 | +</a> |
| 61 | + |
| 62 | +### [Autoencoder](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/404_autoencoder.py) |
| 63 | + |
| 64 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py"> |
| 65 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-4-1.gif" > |
| 66 | +</a> |
| 67 | + |
| 68 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py"> |
| 69 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-4-2.gif" > |
| 70 | +</a> |
| 71 | + |
| 72 | +### [Dropout](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/503_dropout.py) |
| 73 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/503_dropout.py"> |
| 74 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/5-3-1.gif" > |
| 75 | +</a> |
| 76 | + |
| 77 | +### [Batch Normalization](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/504_batch_normalization.py) |
| 78 | +<a href="https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/504_batch_normalization.py"> |
| 79 | + <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/5-4-2.gif" > |
| 80 | +</a> |
| 81 | + |
| 82 | +# Donation |
| 83 | + |
| 84 | +*If this does help you, please consider donating to support me for better tutorials. Any contribution is greatly appreciated!* |
| 85 | + |
| 86 | +<div > |
| 87 | + <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=morvanzhou%40gmail%2ecom&lc=C2&item_name=MorvanPython&currency_code=AUD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted"> |
| 88 | + <img style="border-radius: 20px; box-shadow: 0px 0px 10px 1px #888888;" |
| 89 | + src="https://www.paypalobjects.com/webstatic/en_US/i/btn/png/silver-pill-paypal-44px.png" |
| 90 | + alt="Paypal" |
| 91 | + height="auto" ></a> |
| 92 | +</div> |
0 commit comments