From f21f6125b5b6543b87fca9cfdb56e44176a2028c Mon Sep 17 00:00:00 2001 From: morvanzhou Date: Thu, 29 Oct 2020 20:36:21 +0800 Subject: [PATCH] update --- README.md | 98 +++++++++++++++++++++++++++---------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index ac40941..45a16ff 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- +

@@ -13,85 +13,85 @@ In these tutorials for pyTorch, we will build our first Neural Network and try to build some advanced Neural Network architectures developed recent years. -Thanks for [liufuyang's](https://github.com/liufuyang) [**notebook files**](https://github.com/MorvanZhou/PyTorch-Tutorial/tree/master/tutorial-contents-notebooks) +Thanks for [liufuyang's](https://github.com/liufuyang) [**notebook files**](tutorial-contents-notebooks) which is a great contribution to this tutorial. * pyTorch basic - * [torch and numpy](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/201_torch_numpy.py) - * [Variable](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/202_variable.py) - * [Activation](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/203_activation.py) + * [torch and numpy](tutorial-contents/201_torch_numpy.py) + * [Variable](tutorial-contents/202_variable.py) + * [Activation](tutorial-contents/203_activation.py) * Build your first network - * [Regression](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/301_regression.py) - * [Classification](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/302_classification.py) - * [An easy way](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/303_build_nn_quickly.py) - * [Save and reload](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/304_save_reload.py) - * [Train on batch](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/305_batch_train.py) - * [Optimizers](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/306_optimizer.py) + * [Regression](tutorial-contents/301_regression.py) + * [Classification](tutorial-contents/302_classification.py) + * [An easy way](tutorial-contents/303_build_nn_quickly.py) + * [Save and reload](tutorial-contents/304_save_reload.py) + * [Train on batch](tutorial-contents/305_batch_train.py) + * [Optimizers](tutorial-contents/306_optimizer.py) * Advanced neural network - * [CNN](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/401_CNN.py) - * [RNN-Classification](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/402_RNN_classifier.py) - * [RNN-Regression](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py) - * [AutoEncoder](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/404_autoencoder.py) - * [DQN Reinforcement Learning](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/405_DQN_Reinforcement_learning.py) + * [CNN](tutorial-contents/401_CNN.py) + * [RNN-Classification](tutorial-contents/402_RNN_classifier.py) + * [RNN-Regression](tutorial-contents/403_RNN_regressor.py) + * [AutoEncoder](tutorial-contents/404_autoencoder.py) + * [DQN Reinforcement Learning](tutorial-contents/405_DQN_Reinforcement_learning.py) * [A3C Reinforcement Learning](https://github.com/MorvanZhou/pytorch-A3C) - * [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) + * [GAN (Generative Adversarial Nets)](tutorial-contents/406_GAN.py) / [Conditional GAN](tutorial-contents/406_conditional_GAN.py) * Others (WIP) - * [Why torch dynamic](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/501_why_torch_dynamic_graph.py) - * [Train on GPU](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/502_GPU.py) - * [Dropout](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/503_dropout.py) - * [Batch Normalization](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/504_batch_normalization.py) + * [Why torch dynamic](tutorial-contents/501_why_torch_dynamic_graph.py) + * [Train on GPU](tutorial-contents/502_GPU.py) + * [Dropout](tutorial-contents/503_dropout.py) + * [Batch Normalization](tutorial-contents/504_batch_normalization.py) **For Chinese speakers: All methods mentioned below have their video and text tutorial in Chinese. -Visit [莫烦 Python](https://morvanzhou.github.io/tutorials/) for more. +Visit [莫烦 Python](https://mofanpy.com/tutorials/) for more. You can watch my [Youtube channel](https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg) as well.** -### [Regression](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/301_regression.py) +### [Regression](tutorial-contents/301_regression.py) - - + + -### [Classification](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/302_classification.py) +### [Classification](tutorial-contents/302_classification.py) - - + + -### [CNN](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/401_CNN.py) - - +### [CNN](tutorial-contents/401_CNN.py) + + -### [RNN](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/403_RNN_regressor.py) +### [RNN](tutorial-contents/403_RNN_regressor.py) - - + + -### [Autoencoder](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/404_autoencoder.py) +### [Autoencoder](tutorial-contents/404_autoencoder.py) - - + + - - + + -### [GAN (Generative Adversarial Nets)](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/406_GAN.py) - - +### [GAN (Generative Adversarial Nets)](tutorial-contents/406_GAN.py) + + -### [Dropout](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/503_dropout.py) - - +### [Dropout](tutorial-contents/503_dropout.py) + + -### [Batch Normalization](https://github.com/MorvanZhou/PyTorch-Tutorial/blob/master/tutorial-contents/504_batch_normalization.py) - - +### [Batch Normalization](tutorial-contents/504_batch_normalization.py) + + # Donation @@ -108,7 +108,7 @@ You can watch my [Youtube channel](https://www.youtube.com/channel/UCdyjiB5H8Pu7
- Patreon
\ No newline at end of file