deep_learning_60min_blitz.md 1.5 KB
Newer Older
W
wizardforcel 已提交
1
# PyTorch 深度学习: 60 分钟极速入门
W
wizardforcel 已提交
2

W
wizardforcel 已提交
3
> 译者:[bat67](https://github.com/bat67)
Font Tian's avatar
Font Tian 已提交
4 5
>
> 校对者:[FontTian](https://github.com/fonttian)
W
wizardforcel 已提交
6

W
wizardforcel 已提交
7
**作者**[Soumith Chintala](http://soumith.ch)
W
wizardforcel 已提交
8

W
wizardforcel 已提交
9
此教程的目标:
W
wizardforcel 已提交
10

11
* 更高层次地理解PyTorch的Tensor库以及神经网络。
W
wizardforcel 已提交
12
* 训练一个小的神经网络模型用于分类图像。
W
wizardforcel 已提交
13

W
wizardforcel 已提交
14
本教程假设读者对`numpy`有基本的了解
W
wizardforcel 已提交
15

M
Mathew P. Jones 已提交
16
注意:确保你安装了 [torch](https://github.com/pytorch/pytorch)[torchvision](https://github.com/pytorch/vision) 包。
W
wizardforcel 已提交
17 18 19

![https://pytorch.org/tutorials/_images/tensor_illustration_flat.png](img/0c7a402331744a44f5e17575b1607904.jpg)

W
wizardforcel 已提交
20
[PyTorch 是什么?](blitz/tensor_tutorial.html#sphx-glr-beginner-blitz-tensor-tutorial-py)
W
wizardforcel 已提交
21 22 23

![https://pytorch.org/tutorials/_images/autodiff.png](img/0a7a97c39d6dfc0e08d2701eb7a49231.jpg)

W
wizardforcel 已提交
24
[Autograd:自动求导](blitz/autograd_tutorial.html#sphx-glr-beginner-blitz-autograd-tutorial-py)
W
wizardforcel 已提交
25 26 27

![https://pytorch.org/tutorials/_images/mnist1.png](img/be60e8e1f4baa0de87cf9d37c5325525.jpg)

W
wizardforcel 已提交
28
[神经网络](blitz/neural_networks_tutorial.html#sphx-glr-beginner-blitz-neural-networks-tutorial-py)
W
wizardforcel 已提交
29 30 31

![https://pytorch.org/tutorials/_images/cifar101.png](img/7a28f697e6bab9f3d9b1e8da4a5a5249.jpg)

W
wizardforcel 已提交
32
[训练分类器](blitz/cifar10_tutorial.html#sphx-glr-beginner-blitz-cifar10-tutorial-py)
W
wizardforcel 已提交
33 34 35

![https://pytorch.org/tutorials/_images/data_parallel.png](img/c699a36b37c0fd5aec258278788c1216.jpg)

W
wizardforcel 已提交
36
[可选:数据并行](blitz/data_parallel_tutorial.html#sphx-glr-beginner-blitz-data-parallel-tutorial-py)
W
wizardforcel 已提交
37