1
1
<p align =" center " >
2
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%;">
3
+ <img width="40%" src="logo.png" style="max-width:100%;">
4
4
</a>
5
5
</p >
6
6
13
13
14
14
In these tutorials for pyTorch, we will build our first Neural Network and try to build some advanced Neural Network architectures developed recent years.
15
15
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 )
17
17
which is a great contribution to this tutorial.
18
18
19
19
* 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 )
23
23
* 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 )
30
30
* 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 )
36
36
* [ 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 )
38
38
* 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 )
43
43
44
44
** 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.
46
46
You can watch my [ Youtube channel] ( https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg ) as well.**
47
47
48
48
49
- ### [ Regression] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/301_regression.py)
49
+ ### [ Regression] ( tutorial-contents/301_regression.py )
50
50
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">
53
53
</a >
54
54
55
- ### [ Classification] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/302_classification.py)
55
+ ### [ Classification] ( tutorial-contents/302_classification.py )
56
56
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">
59
59
</a >
60
60
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" >
64
64
</a >
65
65
66
- ### [ RNN] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/403_RNN_regressor.py)
66
+ ### [ RNN] ( tutorial-contents/403_RNN_regressor.py )
67
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-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" >
70
70
</a >
71
71
72
- ### [ Autoencoder] ( https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/ tutorial-contents/404_autoencoder.py)
72
+ ### [ Autoencoder] ( tutorial-contents/404_autoencoder.py )
73
73
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" >
76
76
</a >
77
77
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" >
80
80
</a >
81
81
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" >
85
85
</a >
86
86
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" >
90
90
</a >
91
91
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" >
95
95
</a >
96
96
97
97
# Donation
@@ -108,7 +108,7 @@ You can watch my [Youtube channel](https://www.youtube.com/channel/UCdyjiB5H8Pu7
108
108
109
109
<div >
110
110
<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"
112
112
alt="Patreon"
113
113
height=120></a>
114
114
</div >
0 commit comments