@@ -18,69 +18,74 @@ In these tutorials, we will build our first Neural Network and try to build some
18
18
19
19
All methods mentioned below have their video and text tutorial in Chinese. Visit [ 莫烦 Python] ( https://morvanzhou.github.io/tutorials/ ) for more.
20
20
21
- <!--
22
- * pyTorch basic
23
- * [torch and numpy](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/201_torch_numpy.py)
24
- * [Variable](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/202_variable.py)
25
- * [Activation](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/203_activation.py)
21
+
22
+ * Tensorflow basic
23
+ * [ Session] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/201_session.py )
24
+ * [ Placeholder] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/202_placeholder.py )
25
+ * [ Variable] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/203_variable.py )
26
+ * [ Activation] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/204_activation.py )
26
27
* Build your first network
27
- * [Regression](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/301_regression.py)
28
- * [Classification](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/302_classification.py)
29
- * [An easy way](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/303_build_nn_quickly.py)
30
- * [Save and reload](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/304_save_reload.py)
31
- * [Train on batch](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/305_batch_train.py)
32
- * [Optimizers](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/306_optimizer.py)
28
+ * [ Regression] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/301_simple_regression.py )
29
+ * [ Classification] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/302_simple_classification.py )
30
+ * [ Save and reload] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/303_save_reload.py )
31
+ * [ Optimizers] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/304_optimizer.py )
32
+ * [ Tensorboard] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/305_tensorboard.py )
33
33
* Advanced neural network
34
- * [CNN](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/401_CNN.py)
35
- * [RNN-Classification](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/402_RNN_classifier.py)
36
- * [RNN-Regression](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/403_RNN_regressor.py)
37
- * [AutoEncoder](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/404_autoencoder.py)
38
- * [DQN Reinforcement Learning](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/405_DQN_Reinforcement_learning.py)
34
+ * [ CNN] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/401_CNN.py )
35
+ * [ RNN-Classification] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/402_RNN_classification.py )
36
+ * [ RNN-Regression] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/403_RNN_regression.py )
37
+ * [ AutoEncoder] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/404_AutoEncoder.py )
38
+ * [ DQN Reinforcement Learning] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/405_DQN_reinforcement_learning.py )
39
+ * [ GAN (Generative Adversarial Nets)] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/406_GAN.py ) / [ Conditional GAN] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/406_conditional_GAN.py )
40
+
39
41
* Others (WIP)
40
- * [Why torch dynamic](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/501_why_torch_dynamic_graph.py)
41
- * [Train on GPU](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/502_GPU.py)
42
- * [Dropout](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/503_dropout.py)
43
- * [Batch Normalization](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/504_batch_normalization.py)
42
+ * [ Dropout] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/501_dropout.py )
43
+ * [ Batch Normalization] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/502_batch_normalization.py )
44
44
45
- ### [Regression](https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/301_regression .py)
45
+ ### [ Regression] ( https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/301_simple_regression .py )
46
46
47
- <a href="https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/301_regression .py">
47
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/301_simple_regression .py " >
48
48
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/1-1-2.gif">
49
49
</a >
50
50
51
- ### [Classification](https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/302_classification .py)
51
+ ### [ Classification] ( https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/302_simple_classification .py )
52
52
53
- <a href="https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/302_classification .py">
53
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/302_simple_classification .py " >
54
54
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/1-1-3.gif">
55
55
</a >
56
56
57
- ### [RNN](https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/403_RNN_regressor .py)
57
+ ### [ RNN] ( https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/403_RNN_regression .py )
58
58
59
- <a href="https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/403_RNN_regressor .py">
59
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/403_RNN_regression .py " >
60
60
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-3-1.gif" >
61
61
</a >
62
62
63
- ### [Autoencoder](https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/404_autoencoder .py)
63
+ ### [ Autoencoder] ( https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/404_AutoEncoder .py )
64
64
65
- <a href="https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/403_RNN_regressor .py">
65
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/404_AutoEncoder .py " >
66
66
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-4-1.gif" >
67
67
</a >
68
68
69
- <a href="https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/403_RNN_regressor .py">
69
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/404_AutoEncoder .py " >
70
70
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-4-2.gif" >
71
71
</a >
72
72
73
- ### [Dropout](https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/503_dropout.py)
74
- <a href="https://github.com/MorvanZhou/tutorials/blob/master/pytorchTUT/503_dropout.py">
73
+ ### [ GAN (Generative Adversarial Nets)] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/406_GAN.py )
74
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/406_GAN.py " >
75
+ <img class="course-image" src="https://morvanzhou.github.io/static/results/torch/4-6-1.gif" >
76
+ </a >
77
+
78
+ ### [ Dropout] ( https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/501_dropout.py )
79
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial/blob/master/tutorial-contents/501_dropout.py " >
75
80
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/5-3-1.gif" >
76
81
</a >
77
82
78
- ### [Batch Normalization](https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/504_batch_normalization .py)
79
- <a href="https://github.com/MorvanZhou/tutorials /blob/master/pytorchTUT/504_batch_normalization .py">
83
+ ### [ Batch Normalization] ( https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/502_batch_normalization .py )
84
+ <a href =" https://github.com/MorvanZhou/Tensorflow-Tutorial /blob/master/tutorial-contents/502_batch_normalization .py " >
80
85
<img class="course-image" src="https://morvanzhou.github.io/static/results/torch/5-4-2.gif" >
81
86
</a >
82
87
83
- -->
88
+
84
89
85
90
# Donation
86
91
0 commit comments