README.md 3.5 KB
Newer Older
M
Mu Li 已提交
1 2
# 通过MXNet/Gluon来动手学习深度学习

A
Aston Zhang 已提交
3
主页在 [https://zh.gluon.ai/](https://zh.gluon.ai/)
M
Mu Li 已提交
4

A
Aston Zhang 已提交
5
请使用 [https://discuss.gluon.ai](https://discuss.gluon.ai) 讨论或报告问题。
M
Mu Li 已提交
6 7 8

## 如何贡献

M
Mu Li 已提交
9
所有notebook是用markdown格式存储,这样方便merge改动。jupyter可以通过notedown来直接使用markdown,[参考这里安装](./chapter_preface/install.md#使用notedown插件来读写github源文件)
M
Mu Li 已提交
10

M
Mu Li 已提交
11
build服务器在 http://ci.mxnet.io 。这台服务器有两块Nvidia M60。
M
Mu Li 已提交
12

M
Mu Li 已提交
13
所有markdown文件需要在提交前清除output,它们会在服务器上重新执行生成结果。所以需要保证每个notebook执行不要太久,目前限制是20min。
M
Mu Li 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27

在本地可以如下build html(需要GPU支持)

```bash
conda env update -f build/build.yml
source activate gluon_zh_docs
make html
```

生成的html会在`_build/html`

如果没有改动notebook里面源代码,所以不想执行notebook,可以使用

```
M
muli 已提交
28
make html EVAL=0
M
Mu Li 已提交
29 30 31
```

但这样生成的html将不含有输出结果。
M
muli 已提交
32 33 34

## 编译PDF版本

A
br3  
Aston Zhang 已提交
35
编译pdf版本需要xelatex,和思源字体。在Ubuntu可以这样安装。
M
muli 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

```bash
sudo apt-get install texlive-full
```

```bash
wget https://github.com/adobe-fonts/source-han-sans/raw/release/OTF/SourceHanSansHWSC.zip
wget https://github.com/adobe-fonts/source-han-serif/raw/release/OTF/SourceHanSerifSC_EL-M.zip
unzip SourceHanSansHWSC.zip
unzip SourceHanSerifSC_EL-M.zip
sudo mv SourceHanSansHWSC SourceHanSerifSC_EL-M /usr/share/fonts/opentype/
sudo fc-cache -f -v
```

这时候可以通过 `fc-list :lang=zh` 来查看安装的中文字体。

Y
br4  
yuxiangw 已提交
52
然后可以编译了。
M
muli 已提交
53 54 55 56 57 58

```bash
make latex
cd _build/latex
xelatex -interaction nonstopmode gluon_tutorials_zh.tex
```
59

Y
yuwei wang 已提交
60

61 62
## Terminology 中英术语对照表

Y
yuwei wang 已提交
63 64 65 66 67 68
action, 动作

adversarial learning, 对抗学习

agent, 智能体

69 70 71 72 73 74 75 76 77 78 79 80 81 82
attribute space, 属性空间

attribute value, 属性值

attribute, 属性

binary classification, 二分类

classification, 分类

cluster, 簇

clustering, 聚类

Y
yuwei wang 已提交
83 84 85 86 87 88 89 90 91 92
confidence, 确信度

contextual bandit problem, 情境式赌博机问题

covariate shift, 协变量转移

credit assignment problem, 信用分配问题

cross-entropy, 交叉熵

93 94 95 96 97 98
data set, 数据集

dimensionality, 维数

distribution, 分布

W
wangzhenhui1992 已提交
99
reinforcement learning, 强化学习
Y
yuwei wang 已提交
100

101 102 103 104 105 106 107 108
example, 样例

feature vector, 特征向量

feature, 特征

generalization, 泛化

Y
yuwei wang 已提交
109 110
generative adversarial networks, 生成对抗网络

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
ground-truth, 真相、真实

hypothesis, 假设

independent and identically distributed(i.i.d), 独立同分布

instance, 示例

label space, 标注空间

label, 标注

learing algorithm, 学习算法

learned model, 学得模型

learner, 学习器

learning, 学习

Y
yuwei wang 已提交
131 132 133 134 135 136 137
machine translation, 机器翻译

Markov Decision Process, 马尔可夫决策过程

model, 模型

multi-armed bandit problem, 多臂赌博机问题
138 139 140 141 142

multi-class classification, 多分类

negative class, 反类

Y
yuwei wang 已提交
143 144
offline learning, 离线学习

145 146 147 148
positive class, 正类

prediction, 预测

Y
yuwei wang 已提交
149 150
principal component analysis, 主成分分析

151 152
regression, 回归

Y
yuwei wang 已提交
153 154 155 156
reinforcement learning, 强化学习

representation learning, 表征学习

157 158 159 160 161 162
sample space, 样本空间

sample, 样本

sepecilization, 特化

Y
yuwei wang 已提交
163 164 165 166
sequence learning, 序列学习

subspace estimation, 子空间估计

167 168
supervised learning, 监督学习

W
wangzhenhui1992 已提交
169
testing sample, 测试样本
170 171 172

testing, 测试

Y
yuwei wang 已提交
173 174
time step, 时间步长

175 176 177 178 179 180 181 182
training data, 训练数据

training sample, 训练样本

training set, 训练集

training, 训练

W
wangzhenhui1992 已提交
183
unsupervised learning, 无监督学习