├── 01_PyTorch_Basic ├── 01_TensorDef.ipynb ├── 02_NonlinearFunc.ipynb ├── 03_NeuralNetworksBasic.ipynb ├── A-convolutional-neural-networks-CNN.png ├── LeNet.png └── MNIST │ ├── MNIST.py │ └── data │ ├── processed │ ├── test.pt │ └── training.pt │ └── raw │ ├── t10k-images-idx3-ubyte │ ├── t10k-labels-idx1-ubyte │ ├── train-images-idx3-ubyte │ └── train-labels-idx1-ubyte ├── 02_AlexNet ├── AlexNet.py ├── alexnet.pdf ├── readme.md └── train │ └── catdog.py ├── 03_Learning_PyTorch_with_Examples ├── README.md ├── c1_two_layer_net_numpy.ipynb ├── c2_autograd_two_layer_net_tensor.ipynb ├── c3_autograd_two_layer_net_autograd.ipynb ├── c4_autograd_two_layer_net_custom_function.ipynb ├── c5_autograd_two_layer_net.ipynb ├── c6_nn_two_layer_net_nn.ipynb ├── c7_nn_two_layer_net_optim.ipynb ├── c8_nn_two_layer_net_module.ipynb └── c9_nn_dynamic_net.ipynb ├── 04_RNN ├── .ipynb_checkpoints │ └── rnn_tutorial-checkpoint.ipynb ├── README.md ├── imgs │ ├── rnn.png │ └── rnn_weights.png └── rnn_tutorial.ipynb ├── 05_Deep_Residual_Network ├── main-gpu.py └── main.py ├── 06_Natural_Language_Processing ├── n-gram.py └── word-embedding.py ├── 07_Automated_Reasoning ├── 20180426talk.pdf └── code │ ├── fol_example │ └── sudoku.py ├── 08_DQN ├── DQN_cartPole.ipynb ├── Hello.ipynb └── reinforcement_q_learning.ipynb ├── 09_Attention_seq2seq ├── Attention.ipynb ├── Basic_concept.ipynb ├── README.md ├── basic_seq2seq.ipynb ├── config │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── config.cpython-36.pyc │ └── config.py ├── dataset │ ├── DataHelper.py │ ├── Google-10000-English.txt │ └── __pycache__ │ │ ├── DataHelper.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── image │ ├── atten1.png │ ├── atten_flow.png │ ├── attention.png │ ├── image_caption.png │ ├── no_onehot.png │ ├── padd.png │ ├── s2vt.png │ └── seq2seq.png └── simple_S2VT.ipynb ├── 10_VAE ├── README.md ├── VAE_MNIST_PYTORCH.py └── data_read_in.py └── README.md /01_PyTorch_Basic/01_TensorDef.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/01_TensorDef.ipynb -------------------------------------------------------------------------------- /01_PyTorch_Basic/02_NonlinearFunc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/02_NonlinearFunc.ipynb -------------------------------------------------------------------------------- /01_PyTorch_Basic/03_NeuralNetworksBasic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/03_NeuralNetworksBasic.ipynb -------------------------------------------------------------------------------- /01_PyTorch_Basic/A-convolutional-neural-networks-CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/A-convolutional-neural-networks-CNN.png -------------------------------------------------------------------------------- /01_PyTorch_Basic/LeNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/LeNet.png -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/MNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/MNIST.py -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/data/processed/test.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/data/processed/test.pt -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/data/processed/training.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/data/processed/training.pt -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/data/raw/t10k-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/data/raw/t10k-images-idx3-ubyte -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/data/raw/t10k-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/data/raw/t10k-labels-idx1-ubyte -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/data/raw/train-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/data/raw/train-images-idx3-ubyte -------------------------------------------------------------------------------- /01_PyTorch_Basic/MNIST/data/raw/train-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/01_PyTorch_Basic/MNIST/data/raw/train-labels-idx1-ubyte -------------------------------------------------------------------------------- /02_AlexNet/AlexNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/02_AlexNet/AlexNet.py -------------------------------------------------------------------------------- /02_AlexNet/alexnet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/02_AlexNet/alexnet.pdf -------------------------------------------------------------------------------- /02_AlexNet/readme.md: -------------------------------------------------------------------------------- 1 | 投影片:http://slides.com/jeff15388/deck-10/fullscreen 2 | -------------------------------------------------------------------------------- /02_AlexNet/train/catdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/02_AlexNet/train/catdog.py -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/README.md -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c1_two_layer_net_numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c1_two_layer_net_numpy.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c2_autograd_two_layer_net_tensor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c2_autograd_two_layer_net_tensor.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c3_autograd_two_layer_net_autograd.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c3_autograd_two_layer_net_autograd.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c4_autograd_two_layer_net_custom_function.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c4_autograd_two_layer_net_custom_function.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c5_autograd_two_layer_net.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c5_autograd_two_layer_net.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c6_nn_two_layer_net_nn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c6_nn_two_layer_net_nn.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c7_nn_two_layer_net_optim.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c7_nn_two_layer_net_optim.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c8_nn_two_layer_net_module.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c8_nn_two_layer_net_module.ipynb -------------------------------------------------------------------------------- /03_Learning_PyTorch_with_Examples/c9_nn_dynamic_net.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/03_Learning_PyTorch_with_Examples/c9_nn_dynamic_net.ipynb -------------------------------------------------------------------------------- /04_RNN/.ipynb_checkpoints/rnn_tutorial-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/04_RNN/.ipynb_checkpoints/rnn_tutorial-checkpoint.ipynb -------------------------------------------------------------------------------- /04_RNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/04_RNN/README.md -------------------------------------------------------------------------------- /04_RNN/imgs/rnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/04_RNN/imgs/rnn.png -------------------------------------------------------------------------------- /04_RNN/imgs/rnn_weights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/04_RNN/imgs/rnn_weights.png -------------------------------------------------------------------------------- /04_RNN/rnn_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/04_RNN/rnn_tutorial.ipynb -------------------------------------------------------------------------------- /05_Deep_Residual_Network/main-gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/05_Deep_Residual_Network/main-gpu.py -------------------------------------------------------------------------------- /05_Deep_Residual_Network/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/05_Deep_Residual_Network/main.py -------------------------------------------------------------------------------- /06_Natural_Language_Processing/n-gram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/06_Natural_Language_Processing/n-gram.py -------------------------------------------------------------------------------- /06_Natural_Language_Processing/word-embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/06_Natural_Language_Processing/word-embedding.py -------------------------------------------------------------------------------- /07_Automated_Reasoning/20180426talk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/07_Automated_Reasoning/20180426talk.pdf -------------------------------------------------------------------------------- /07_Automated_Reasoning/code/fol_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/07_Automated_Reasoning/code/fol_example -------------------------------------------------------------------------------- /07_Automated_Reasoning/code/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/07_Automated_Reasoning/code/sudoku.py -------------------------------------------------------------------------------- /08_DQN/DQN_cartPole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/08_DQN/DQN_cartPole.ipynb -------------------------------------------------------------------------------- /08_DQN/Hello.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/08_DQN/Hello.ipynb -------------------------------------------------------------------------------- /08_DQN/reinforcement_q_learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/08_DQN/reinforcement_q_learning.ipynb -------------------------------------------------------------------------------- /09_Attention_seq2seq/Attention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/Attention.ipynb -------------------------------------------------------------------------------- /09_Attention_seq2seq/Basic_concept.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/Basic_concept.ipynb -------------------------------------------------------------------------------- /09_Attention_seq2seq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/README.md -------------------------------------------------------------------------------- /09_Attention_seq2seq/basic_seq2seq.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/basic_seq2seq.ipynb -------------------------------------------------------------------------------- /09_Attention_seq2seq/config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /09_Attention_seq2seq/config/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/config/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /09_Attention_seq2seq/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/config/config.py -------------------------------------------------------------------------------- /09_Attention_seq2seq/dataset/DataHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/dataset/DataHelper.py -------------------------------------------------------------------------------- /09_Attention_seq2seq/dataset/Google-10000-English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/dataset/Google-10000-English.txt -------------------------------------------------------------------------------- /09_Attention_seq2seq/dataset/__pycache__/DataHelper.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/dataset/__pycache__/DataHelper.cpython-36.pyc -------------------------------------------------------------------------------- /09_Attention_seq2seq/dataset/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/dataset/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/atten1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/atten1.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/atten_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/atten_flow.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/attention.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/image_caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/image_caption.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/no_onehot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/no_onehot.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/padd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/padd.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/s2vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/s2vt.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/image/seq2seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/image/seq2seq.png -------------------------------------------------------------------------------- /09_Attention_seq2seq/simple_S2VT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/09_Attention_seq2seq/simple_S2VT.ipynb -------------------------------------------------------------------------------- /10_VAE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/10_VAE/README.md -------------------------------------------------------------------------------- /10_VAE/VAE_MNIST_PYTORCH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/10_VAE/VAE_MNIST_PYTORCH.py -------------------------------------------------------------------------------- /10_VAE/data_read_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/10_VAE/data_read_in.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pecu/PyTorch_CSX/HEAD/README.md --------------------------------------------------------------------------------