11<p align =" center " >
22 <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%;">
3+ <img width="40%" src="logo.png" style="max-width:100%;">
44 </a>
55</p >
66
1313
1414In these tutorials for pyTorch, we will build our first Neural Network and try to build some advanced Neural Network architectures developed recent years.
1515
16- Thanks for [ liufuyang's] ( https://github.com/liufuyang ) [ ** notebook files** ] ( https://github.com/MorvanZhou/PyTorch-Tutorial/tree/master/ tutorial-contents-notebooks)
16+ Thanks for [ liufuyang's] ( https://github.com/liufuyang ) [ ** notebook files** ] ( tutorial-contents-notebooks )
1717which is a great contribution to this tutorial.
1818
1919* pyTorch basic
20- * [ torch and numpy] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/201_torch_numpy.py)
21- * [ Variable] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/202_variable.py)
22- * [ Activation] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/203_activation.py)
20+ * [ torch and numpy] ( tutorial-contents/201_torch_numpy.py )
21+ * [ Variable] ( tutorial-contents/202_variable.py )
22+ * [ Activation] ( tutorial-contents/203_activation.py )
2323* Build your first network
24- * [ Regression] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/301_regression.py)
25- * [ Classification] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/302_classification.py)
26- * [ An easy way] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/303_build_nn_quickly.py)
27- * [ Save and reload] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/304_save_reload.py)
28- * [ Train on batch] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/305_batch_train.py)
29- * [ Optimizers] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/306_optimizer.py)
24+ * [ Regression] ( tutorial-contents/301_regression.py )
25+ * [ Classification] ( tutorial-contents/302_classification.py )
26+ * [ An easy way] ( tutorial-contents/303_build_nn_quickly.py )
27+ * [ Save and reload] ( tutorial-contents/304_save_reload.py )
28+ * [ Train on batch] ( tutorial-contents/305_batch_train.py )
29+ * [ Optimizers] ( tutorial-contents/306_optimizer.py )
3030* Advanced neural network
31- * [ CNN] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/401_CNN.py)
32- * [ RNN-Classification] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/402_RNN_classifier.py)
33- * [ RNN-Regression] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/403_RNN_regressor.py)
34- * [ AutoEncoder] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/404_autoencoder.py)
35- * [ DQN Reinforcement Learning] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/405_DQN_Reinforcement_learning.py)
31+ * [ CNN] ( tutorial-contents/401_CNN.py )
32+ * [ RNN-Classification] ( tutorial-contents/402_RNN_classifier.py )
33+ * [ RNN-Regression] ( tutorial-contents/403_RNN_regressor.py )
34+ * [ AutoEncoder] ( tutorial-contents/404_autoencoder.py )
35+ * [ DQN Reinforcement Learning] ( tutorial-contents/405_DQN_Reinforcement_learning.py )
3636 * [ A3C Reinforcement Learning] ( https://github.com/MorvanZhou/pytorch-A3C )
37- * [ GAN (Generative Adversarial Nets)] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/406_GAN.py) / [ Conditional GAN] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/406_conditional_GAN.py)
37+ * [ GAN (Generative Adversarial Nets)] ( tutorial-contents/406_GAN.py ) / [ Conditional GAN] ( tutorial-contents/406_conditional_GAN.py )
3838* Others (WIP)
39- * [ Why torch dynamic] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/501_why_torch_dynamic_graph.py)
40- * [ Train on GPU] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/502_GPU.py)
41- * [ Dropout] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/503_dropout.py)
42- * [ Batch Normalization] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/504_batch_normalization.py)
39+ * [ Why torch dynamic] ( tutorial-contents/501_why_torch_dynamic_graph.py )
40+ * [ Train on GPU] ( tutorial-contents/502_GPU.py )
41+ * [ Dropout] ( tutorial-contents/503_dropout.py )
42+ * [ Batch Normalization] ( tutorial-contents/504_batch_normalization.py )
4343
4444** For Chinese speakers: All methods mentioned below have their video and text tutorial in Chinese.
45- Visit [ 莫烦 Python] ( https://morvanzhou.github.io /tutorials/ ) for more.
45+ Visit [ 莫烦 Python] ( https://mofanpy.com /tutorials/ ) for more.
4646You can watch my [ Youtube channel] ( https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg ) as well.**
4747
4848
49- ### [ Regression] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/301_regression.py)
49+ ### [ Regression] ( tutorial-contents/301_regression.py )
5050
51- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/301_regression.py" >
52- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/1-1-2.gif">
51+ <a href =" tutorial-contents/301_regression.py " >
52+ <img class="course-image" src="https://mofanpy.com /static/results/torch/1-1-2.gif">
5353</a >
5454
55- ### [ Classification] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/302_classification.py)
55+ ### [ Classification] ( tutorial-contents/302_classification.py )
5656
57- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/302_classification.py" >
58- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/1-1-3.gif">
57+ <a href =" tutorial-contents/302_classification.py " >
58+ <img class="course-image" src="https://mofanpy.com /static/results/torch/1-1-3.gif">
5959</a >
6060
61- ### [ CNN] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/401_CNN.py)
62- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/401_CNN.py" >
63- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/4-1-2.gif" >
61+ ### [ CNN] ( tutorial-contents/401_CNN.py )
62+ <a href =" tutorial-contents/401_CNN.py " >
63+ <img class="course-image" src="https://mofanpy.com /static/results/torch/4-1-2.gif" >
6464</a >
6565
66- ### [ RNN] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/403_RNN_regressor.py)
66+ ### [ RNN] ( tutorial-contents/403_RNN_regressor.py )
6767
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-3-1.gif" >
68+ <a href =" tutorial-contents/403_RNN_regressor.py " >
69+ <img class="course-image" src="https://mofanpy.com /static/results/torch/4-3-1.gif" >
7070</a >
7171
72- ### [ Autoencoder] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/404_autoencoder.py)
72+ ### [ Autoencoder] ( tutorial-contents/404_autoencoder.py )
7373
74- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/403_RNN_regressor.py" >
75- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/4-4-1.gif" >
74+ <a href =" tutorial-contents/403_RNN_regressor.py " >
75+ <img class="course-image" src="https://mofanpy.com /static/results/torch/4-4-1.gif" >
7676</a >
7777
78- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/403_RNN_regressor.py" >
79- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/4-4-2.gif" >
78+ <a href =" tutorial-contents/403_RNN_regressor.py " >
79+ <img class="course-image" src="https://mofanpy.com /static/results/torch/4-4-2.gif" >
8080</a >
8181
82- ### [ GAN (Generative Adversarial Nets)] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/406_GAN.py)
83- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/406_GAN.py" >
84- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/4-6-1.gif" >
82+ ### [ GAN (Generative Adversarial Nets)] ( tutorial-contents/406_GAN.py )
83+ <a href =" tutorial-contents/406_GAN.py " >
84+ <img class="course-image" src="https://mofanpy.com /static/results/torch/4-6-1.gif" >
8585</a >
8686
87- ### [ Dropout] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/503_dropout.py)
88- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/503_dropout.py" >
89- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/5-3-1.gif" >
87+ ### [ Dropout] ( tutorial-contents/503_dropout.py )
88+ <a href =" tutorial-contents/503_dropout.py " >
89+ <img class="course-image" src="https://mofanpy.com /static/results/torch/5-3-1.gif" >
9090</a >
9191
92- ### [ Batch Normalization] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/504_batch_normalization.py)
93- <a href =" https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/504_batch_normalization.py" >
94- <img class="course-image" src="https://morvanzhou.github.io /static/results/torch/5-4-2.gif" >
92+ ### [ Batch Normalization] ( tutorial-contents/504_batch_normalization.py )
93+ <a href =" tutorial-contents/504_batch_normalization.py " >
94+ <img class="course-image" src="https://mofanpy.com /static/results/torch/5-4-2.gif" >
9595</a >
9696
9797# Donation
@@ -108,7 +108,7 @@ You can watch my [Youtube channel](https://www.youtube.com/channel/UCdyjiB5H8Pu7
108108
109109<div >
110110 <a href =" https://www.patreon.com/morvan " >
111- <img src="https://morvanzhou.github.io /static/img/support/patreon.jpg"
111+ <img src="https://mofanpy.com /static/img/support/patreon.jpg"
112112 alt="Patreon"
113113 height=120></a>
114114</div >
0 commit comments