├── .gitignore ├── README.md ├── lesson01-PyTorch初见 ├── autograd_demo.py ├── gpu_accelerate.py ├── 初见PyTorch.pdf ├── 版权声明.png ├── 答疑群-926107229.png └── 请学员务必加群答疑!!!.txt ├── lesson02-开发环境安装 ├── lesson2.pdf ├── main.py └── 版权声明.png ├── lesson03-简单回归案例 ├── lesson3.pdf └── 版权声明.png ├── lesson04-简单回归案例实战 ├── data.csv ├── gd.py ├── lesson4.pdf └── 版权声明.png ├── lesson05-手写数字问题 ├── lesson5.pdf ├── mnist_train.py ├── utils.py └── 版权声明.png ├── lesson06-基本数据类型 ├── lesson6.pdf └── 版权声明.png ├── lesson07-创建Tensor ├── lesson7.pdf ├── 版权声明.png └── 这一章代码量少,同学们照着写.txt ├── lesson08-索引与切片 ├── lesson8.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson09-维度变换 ├── Expand.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson10-Broadcasting ├── Broadcasting.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson11-合并与分割 ├── Concat.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson12-数学运算 ├── math operation.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson13-Tensor统计 ├── statisics.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson14-Tensor高阶 ├── tensor advanced.pdf └── 这一章代码量少,同学们照着写.txt ├── lesson16-什么是梯度 └── 16 梯度.pdf ├── lesson17-常见函数的梯度 └── 17 常见函数梯度.pdf ├── lesson18-激活函数与Loss的梯度 ├── 18.1 激活函数梯度.pdf └── 18.2 LOSS及其梯度.pdf ├── lesson19-感知机的梯度推导 ├── 19.1 单一输出感知机.pdf ├── 19.2 多输出感知机.pdf ├── lesson19.1.mp4.baiduyun.uploading.cfg └── lesson19.2.mp4.baiduyun.uploading.cfg ├── lesson20-链式法则 └── 20.pdf ├── lesson21-MLP反向传播推导 └── 21.pdf ├── lesson22-优化小实例 ├── 22 Himmelblau.pdf └── main.py ├── lesson24-Logistic Regression └── 24 LR.pdf ├── lesson25-交叉熵 └── 25 交叉熵.pdf ├── lesson26-LR多分类实战 ├── 26.pdf └── main.py ├── lesson27-MLP网络层 ├── 27 全连接层.pdf └── main.py ├── lesson28-激活函数与GPU加速 ├── 28.pdf └── main.py ├── lesson29-MNIST测试 ├── 29.pdf └── main.py ├── lesson30-Visdom可视化 ├── 30 可视化.pdf └── main.py ├── lesson31-过拟合与欠拟合 └── 31.pdf ├── lesson32-Train-Val-Test-交叉验证 ├── 32.pdf └── main.py ├── lesson33-regularization ├── 33.pdf └── main.py ├── lesson34-动量与lr衰减 └── 34.pdf ├── lesson35-Early-stopping-Dropout ├── 35.pdf └── main.py ├── lesson37-什么是卷积 └── 37 卷积.pdf ├── lesson38-卷积神经网络 └── 38 CNN.pdf ├── lesson39-Pooling-Sampling └── 39.pdf ├── lesson40-BatchNorm └── 40.pdf ├── lesson41-经典卷积网络 └── 41.pdf ├── lesson42-ResNet ├── 42.pdf └── resnet.py ├── lesson43-nn.Module ├── 43.pdf └── main.py ├── lesson44-数据增强 ├── 44.pdf └── main.py ├── lesson45-Cifar10与ResNet18实战 ├── .gitignore ├── .idea │ ├── Cifar10与ResNet18实战.iml │ ├── encodings.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── lenet5.py ├── main.py └── resnet.py ├── lesson46-时间序列表示 ├── 46.pdf └── main.py ├── lesson47-RNN原理 └── 47.pdf ├── lesson48-RNN-Layer使用 ├── 48.pdf └── rnn.py ├── lesson49-时间序列预测 ├── 49.pdf └── seris.py ├── lesson50-RNN训练难题 └── 50.pdf ├── lesson51-LSTM原理 └── 51.pdf ├── lesson52-LSTM-Layer使用 └── 52.pdf ├── lesson53-情感分类实战 ├── 53.pdf ├── lstm.ipynb └── lstm.py ├── lesson54-AutoEncoder自编码器 ├── .gitignore └── AutoEncoders.pdf ├── lesson55-VAE实战 ├── ae.py ├── main.py └── vae.py ├── lesson56-GAN原理 ├── GAN样片.jpg └── 深度学习:GAN.pdf ├── lesson57-WGAN实战 ├── gan.py └── wgan_gp.py ├── lesson58-图卷积网络GCN ├── .gitignore ├── .idea │ ├── encodings.xml │ ├── lesson66-图卷积网络GCN.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── README.MD ├── layers.py ├── models.py ├── res │ └── figure.png ├── train.py └── utils.py ├── lesson63-迁移学习-自定义数据集实战 ├── pokemon.py ├── resnet.py ├── train_scratch.py ├── train_transfer.py ├── utils.py └── 宝可梦数据集.pdf ├── lesson选看-人工智能发展史 └── 人工智能发展史.pdf ├── res ├── ad_banner.png ├── cover.png ├── outline.png └── 版权声明.png └── 课程介绍 ├── 2019-01-12 (6).png └── 2019-01-13.png /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /lesson01-PyTorch初见/autograd_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson01-PyTorch初见/autograd_demo.py -------------------------------------------------------------------------------- /lesson01-PyTorch初见/gpu_accelerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson01-PyTorch初见/gpu_accelerate.py -------------------------------------------------------------------------------- /lesson01-PyTorch初见/初见PyTorch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson01-PyTorch初见/初见PyTorch.pdf -------------------------------------------------------------------------------- /lesson01-PyTorch初见/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson01-PyTorch初见/版权声明.png -------------------------------------------------------------------------------- /lesson01-PyTorch初见/答疑群-926107229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson01-PyTorch初见/答疑群-926107229.png -------------------------------------------------------------------------------- /lesson01-PyTorch初见/请学员务必加群答疑!!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson01-PyTorch初见/请学员务必加群答疑!!!.txt -------------------------------------------------------------------------------- /lesson02-开发环境安装/lesson2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson02-开发环境安装/lesson2.pdf -------------------------------------------------------------------------------- /lesson02-开发环境安装/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson02-开发环境安装/main.py -------------------------------------------------------------------------------- /lesson02-开发环境安装/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson02-开发环境安装/版权声明.png -------------------------------------------------------------------------------- /lesson03-简单回归案例/lesson3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson03-简单回归案例/lesson3.pdf -------------------------------------------------------------------------------- /lesson03-简单回归案例/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson03-简单回归案例/版权声明.png -------------------------------------------------------------------------------- /lesson04-简单回归案例实战/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson04-简单回归案例实战/data.csv -------------------------------------------------------------------------------- /lesson04-简单回归案例实战/gd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson04-简单回归案例实战/gd.py -------------------------------------------------------------------------------- /lesson04-简单回归案例实战/lesson4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson04-简单回归案例实战/lesson4.pdf -------------------------------------------------------------------------------- /lesson04-简单回归案例实战/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson04-简单回归案例实战/版权声明.png -------------------------------------------------------------------------------- /lesson05-手写数字问题/lesson5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson05-手写数字问题/lesson5.pdf -------------------------------------------------------------------------------- /lesson05-手写数字问题/mnist_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson05-手写数字问题/mnist_train.py -------------------------------------------------------------------------------- /lesson05-手写数字问题/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson05-手写数字问题/utils.py -------------------------------------------------------------------------------- /lesson05-手写数字问题/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson05-手写数字问题/版权声明.png -------------------------------------------------------------------------------- /lesson06-基本数据类型/lesson6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson06-基本数据类型/lesson6.pdf -------------------------------------------------------------------------------- /lesson06-基本数据类型/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson06-基本数据类型/版权声明.png -------------------------------------------------------------------------------- /lesson07-创建Tensor/lesson7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson07-创建Tensor/lesson7.pdf -------------------------------------------------------------------------------- /lesson07-创建Tensor/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson07-创建Tensor/版权声明.png -------------------------------------------------------------------------------- /lesson07-创建Tensor/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson08-索引与切片/lesson8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson08-索引与切片/lesson8.pdf -------------------------------------------------------------------------------- /lesson08-索引与切片/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson09-维度变换/Expand.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson09-维度变换/Expand.pdf -------------------------------------------------------------------------------- /lesson09-维度变换/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson10-Broadcasting/Broadcasting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson10-Broadcasting/Broadcasting.pdf -------------------------------------------------------------------------------- /lesson10-Broadcasting/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson11-合并与分割/Concat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson11-合并与分割/Concat.pdf -------------------------------------------------------------------------------- /lesson11-合并与分割/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson12-数学运算/math operation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson12-数学运算/math operation.pdf -------------------------------------------------------------------------------- /lesson12-数学运算/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson13-Tensor统计/statisics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson13-Tensor统计/statisics.pdf -------------------------------------------------------------------------------- /lesson13-Tensor统计/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson14-Tensor高阶/tensor advanced.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson14-Tensor高阶/tensor advanced.pdf -------------------------------------------------------------------------------- /lesson14-Tensor高阶/这一章代码量少,同学们照着写.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson16-什么是梯度/16 梯度.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson16-什么是梯度/16 梯度.pdf -------------------------------------------------------------------------------- /lesson17-常见函数的梯度/17 常见函数梯度.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson17-常见函数的梯度/17 常见函数梯度.pdf -------------------------------------------------------------------------------- /lesson18-激活函数与Loss的梯度/18.1 激活函数梯度.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson18-激活函数与Loss的梯度/18.1 激活函数梯度.pdf -------------------------------------------------------------------------------- /lesson18-激活函数与Loss的梯度/18.2 LOSS及其梯度.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson18-激活函数与Loss的梯度/18.2 LOSS及其梯度.pdf -------------------------------------------------------------------------------- /lesson19-感知机的梯度推导/19.1 单一输出感知机.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson19-感知机的梯度推导/19.1 单一输出感知机.pdf -------------------------------------------------------------------------------- /lesson19-感知机的梯度推导/19.2 多输出感知机.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson19-感知机的梯度推导/19.2 多输出感知机.pdf -------------------------------------------------------------------------------- /lesson19-感知机的梯度推导/lesson19.1.mp4.baiduyun.uploading.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson19-感知机的梯度推导/lesson19.1.mp4.baiduyun.uploading.cfg -------------------------------------------------------------------------------- /lesson19-感知机的梯度推导/lesson19.2.mp4.baiduyun.uploading.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson19-感知机的梯度推导/lesson19.2.mp4.baiduyun.uploading.cfg -------------------------------------------------------------------------------- /lesson20-链式法则/20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson20-链式法则/20.pdf -------------------------------------------------------------------------------- /lesson21-MLP反向传播推导/21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson21-MLP反向传播推导/21.pdf -------------------------------------------------------------------------------- /lesson22-优化小实例/22 Himmelblau.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson22-优化小实例/22 Himmelblau.pdf -------------------------------------------------------------------------------- /lesson22-优化小实例/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson22-优化小实例/main.py -------------------------------------------------------------------------------- /lesson24-Logistic Regression/24 LR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson24-Logistic Regression/24 LR.pdf -------------------------------------------------------------------------------- /lesson25-交叉熵/25 交叉熵.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson25-交叉熵/25 交叉熵.pdf -------------------------------------------------------------------------------- /lesson26-LR多分类实战/26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson26-LR多分类实战/26.pdf -------------------------------------------------------------------------------- /lesson26-LR多分类实战/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson26-LR多分类实战/main.py -------------------------------------------------------------------------------- /lesson27-MLP网络层/27 全连接层.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson27-MLP网络层/27 全连接层.pdf -------------------------------------------------------------------------------- /lesson27-MLP网络层/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson27-MLP网络层/main.py -------------------------------------------------------------------------------- /lesson28-激活函数与GPU加速/28.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson28-激活函数与GPU加速/28.pdf -------------------------------------------------------------------------------- /lesson28-激活函数与GPU加速/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson28-激活函数与GPU加速/main.py -------------------------------------------------------------------------------- /lesson29-MNIST测试/29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson29-MNIST测试/29.pdf -------------------------------------------------------------------------------- /lesson29-MNIST测试/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson29-MNIST测试/main.py -------------------------------------------------------------------------------- /lesson30-Visdom可视化/30 可视化.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson30-Visdom可视化/30 可视化.pdf -------------------------------------------------------------------------------- /lesson30-Visdom可视化/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson30-Visdom可视化/main.py -------------------------------------------------------------------------------- /lesson31-过拟合与欠拟合/31.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson31-过拟合与欠拟合/31.pdf -------------------------------------------------------------------------------- /lesson32-Train-Val-Test-交叉验证/32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson32-Train-Val-Test-交叉验证/32.pdf -------------------------------------------------------------------------------- /lesson32-Train-Val-Test-交叉验证/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson32-Train-Val-Test-交叉验证/main.py -------------------------------------------------------------------------------- /lesson33-regularization/33.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson33-regularization/33.pdf -------------------------------------------------------------------------------- /lesson33-regularization/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson33-regularization/main.py -------------------------------------------------------------------------------- /lesson34-动量与lr衰减/34.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson34-动量与lr衰减/34.pdf -------------------------------------------------------------------------------- /lesson35-Early-stopping-Dropout/35.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson35-Early-stopping-Dropout/35.pdf -------------------------------------------------------------------------------- /lesson35-Early-stopping-Dropout/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson35-Early-stopping-Dropout/main.py -------------------------------------------------------------------------------- /lesson37-什么是卷积/37 卷积.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson37-什么是卷积/37 卷积.pdf -------------------------------------------------------------------------------- /lesson38-卷积神经网络/38 CNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson38-卷积神经网络/38 CNN.pdf -------------------------------------------------------------------------------- /lesson39-Pooling-Sampling/39.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson39-Pooling-Sampling/39.pdf -------------------------------------------------------------------------------- /lesson40-BatchNorm/40.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson40-BatchNorm/40.pdf -------------------------------------------------------------------------------- /lesson41-经典卷积网络/41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson41-经典卷积网络/41.pdf -------------------------------------------------------------------------------- /lesson42-ResNet/42.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson42-ResNet/42.pdf -------------------------------------------------------------------------------- /lesson42-ResNet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson42-ResNet/resnet.py -------------------------------------------------------------------------------- /lesson43-nn.Module/43.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson43-nn.Module/43.pdf -------------------------------------------------------------------------------- /lesson43-nn.Module/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson43-nn.Module/main.py -------------------------------------------------------------------------------- /lesson44-数据增强/44.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson44-数据增强/44.pdf -------------------------------------------------------------------------------- /lesson44-数据增强/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson44-数据增强/main.py -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.gitignore: -------------------------------------------------------------------------------- 1 | cifar 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/Cifar10与ResNet18实战.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/Cifar10与ResNet18实战.iml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/encodings.xml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/misc.xml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/modules.xml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/vcs.xml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/.idea/workspace.xml -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/lenet5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/lenet5.py -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/main.py -------------------------------------------------------------------------------- /lesson45-Cifar10与ResNet18实战/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson45-Cifar10与ResNet18实战/resnet.py -------------------------------------------------------------------------------- /lesson46-时间序列表示/46.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson46-时间序列表示/46.pdf -------------------------------------------------------------------------------- /lesson46-时间序列表示/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson46-时间序列表示/main.py -------------------------------------------------------------------------------- /lesson47-RNN原理/47.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson47-RNN原理/47.pdf -------------------------------------------------------------------------------- /lesson48-RNN-Layer使用/48.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson48-RNN-Layer使用/48.pdf -------------------------------------------------------------------------------- /lesson48-RNN-Layer使用/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson48-RNN-Layer使用/rnn.py -------------------------------------------------------------------------------- /lesson49-时间序列预测/49.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson49-时间序列预测/49.pdf -------------------------------------------------------------------------------- /lesson49-时间序列预测/seris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson49-时间序列预测/seris.py -------------------------------------------------------------------------------- /lesson50-RNN训练难题/50.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson50-RNN训练难题/50.pdf -------------------------------------------------------------------------------- /lesson51-LSTM原理/51.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson51-LSTM原理/51.pdf -------------------------------------------------------------------------------- /lesson52-LSTM-Layer使用/52.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson52-LSTM-Layer使用/52.pdf -------------------------------------------------------------------------------- /lesson53-情感分类实战/53.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson53-情感分类实战/53.pdf -------------------------------------------------------------------------------- /lesson53-情感分类实战/lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson53-情感分类实战/lstm.ipynb -------------------------------------------------------------------------------- /lesson53-情感分类实战/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson53-情感分类实战/lstm.py -------------------------------------------------------------------------------- /lesson54-AutoEncoder自编码器/.gitignore: -------------------------------------------------------------------------------- 1 | mnist 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /lesson54-AutoEncoder自编码器/AutoEncoders.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson54-AutoEncoder自编码器/AutoEncoders.pdf -------------------------------------------------------------------------------- /lesson55-VAE实战/ae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson55-VAE实战/ae.py -------------------------------------------------------------------------------- /lesson55-VAE实战/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson55-VAE实战/main.py -------------------------------------------------------------------------------- /lesson55-VAE实战/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson55-VAE实战/vae.py -------------------------------------------------------------------------------- /lesson56-GAN原理/GAN样片.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson56-GAN原理/GAN样片.jpg -------------------------------------------------------------------------------- /lesson56-GAN原理/深度学习:GAN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson56-GAN原理/深度学习:GAN.pdf -------------------------------------------------------------------------------- /lesson57-WGAN实战/gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson57-WGAN实战/gan.py -------------------------------------------------------------------------------- /lesson57-WGAN实战/wgan_gp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson57-WGAN实战/wgan_gp.py -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/.idea/encodings.xml -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.idea/lesson66-图卷积网络GCN.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/.idea/lesson66-图卷积网络GCN.iml -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/.idea/misc.xml -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/.idea/modules.xml -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/.idea/vcs.xml -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/.idea/workspace.xml -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/README.MD -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/layers.py -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/models.py -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/res/figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/res/figure.png -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/train.py -------------------------------------------------------------------------------- /lesson58-图卷积网络GCN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson58-图卷积网络GCN/utils.py -------------------------------------------------------------------------------- /lesson63-迁移学习-自定义数据集实战/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson63-迁移学习-自定义数据集实战/pokemon.py -------------------------------------------------------------------------------- /lesson63-迁移学习-自定义数据集实战/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson63-迁移学习-自定义数据集实战/resnet.py -------------------------------------------------------------------------------- /lesson63-迁移学习-自定义数据集实战/train_scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson63-迁移学习-自定义数据集实战/train_scratch.py -------------------------------------------------------------------------------- /lesson63-迁移学习-自定义数据集实战/train_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson63-迁移学习-自定义数据集实战/train_transfer.py -------------------------------------------------------------------------------- /lesson63-迁移学习-自定义数据集实战/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson63-迁移学习-自定义数据集实战/utils.py -------------------------------------------------------------------------------- /lesson63-迁移学习-自定义数据集实战/宝可梦数据集.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson63-迁移学习-自定义数据集实战/宝可梦数据集.pdf -------------------------------------------------------------------------------- /lesson选看-人工智能发展史/人工智能发展史.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/lesson选看-人工智能发展史/人工智能发展史.pdf -------------------------------------------------------------------------------- /res/ad_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/res/ad_banner.png -------------------------------------------------------------------------------- /res/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/res/cover.png -------------------------------------------------------------------------------- /res/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/res/outline.png -------------------------------------------------------------------------------- /res/版权声明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/res/版权声明.png -------------------------------------------------------------------------------- /课程介绍/2019-01-12 (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/课程介绍/2019-01-12 (6).png -------------------------------------------------------------------------------- /课程介绍/2019-01-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragen1860/Deep-Learning-with-PyTorch-Tutorials/HEAD/课程介绍/2019-01-13.png --------------------------------------------------------------------------------