README.md 2.9 KB
Newer Older
M
Mu Li 已提交
1
# 动手来学深度学习
M
Mu Li 已提交
2

M
Mu Li 已提交
3 4
[![Build Status](http://ci.mxnet.io/job/gluon-tutorials-zh/badge/icon)](http://ci.mxnet.io/job/gluon-tutorials-zh/)

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

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

## 如何贡献

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

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

M
Mu Li 已提交
15
可以使用 http://zh.gluon.ai.s3-website-us-west-2.amazonaws.com/ 来访问没有加载过 CDN 的版本,对代码的改动刷新更快。
16 17 18

## 编译HTML版本

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

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

A
rebuilt  
Aston Zhang 已提交
23
```
M
Mu Li 已提交
24 25 26 27 28 29 30 31 32
conda env update -f build/build.yml
source activate gluon_zh_docs
make html
```

生成的html会在`_build/html`

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

A
rebuilt  
Aston Zhang 已提交
33
```
M
muli 已提交
34
make html EVAL=0
M
Mu Li 已提交
35 36 37
```

但这样生成的html将不含有输出结果。
M
muli 已提交
38 39 40

## 编译PDF版本

41
编译pdf版本需要xelatex、librsvg2-bin(svg图片转pdf)和思源字体。在Ubuntu可以这样安装。
M
muli 已提交
42

A
rebuilt  
Aston Zhang 已提交
43
```
M
muli 已提交
44
sudo apt-get install texlive-full
45
sudo apt-get install librsvg2-bin
M
muli 已提交
46 47
```

A
rebuilt  
Aston Zhang 已提交
48
```
M
Mu Li 已提交
49 50
wget https://github.com/adobe-fonts/source-han-sans/raw/release/OTF/SourceHanSansSC.zip
wget https://github.com/adobe-fonts/source-han-serif/raw/release/OTF/SourceHanSerifSC_SB-H.zip
M
muli 已提交
51
wget https://github.com/adobe-fonts/source-han-serif/raw/release/OTF/SourceHanSerifSC_EL-M.zip
M
Mu Li 已提交
52 53

unzip SourceHanSansSC.zip
M
muli 已提交
54
unzip SourceHanSerifSC_EL-M.zip
M
Mu Li 已提交
55
unzip SourceHanSerifSC_SB-H.zip
M
Mu Li 已提交
56

M
Mu Li 已提交
57
sudo mv SourceHanSansSC SourceHanSerifSC_EL-M SourceHanSerifSC_SB-H /usr/share/fonts/opentype/
M
muli 已提交
58 59 60 61 62
sudo fc-cache -f -v
```

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

M
Mu Li 已提交
63 64
同样的去下载和安装英文字体

A
Aston Zhang 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
```
wget -O source-serif-pro.zip https://www.fontsquirrel.com/fonts/download/source-serif-pro
unzip source-serif-pro -d source-serif-pro
sudo mv source-serif-pro /usr/share/fonts/opentype/

wget -O source-sans-pro.zip https://www.fontsquirrel.com/fonts/download/source-sans-pro
unzip source-sans-pro -d source-sans-pro
sudo mv source-sans-pro /usr/share/fonts/opentype/

wget -O source-code-pro.zip https://www.fontsquirrel.com/fonts/download/source-code-pro
unzip source-code-pro -d source-code-pro
sudo mv source-code-pro /usr/share/fonts/opentype/

sudo fc-cache -f -v
```
M
Mu Li 已提交
80

Y
br4  
yuxiangw 已提交
81
然后可以编译了。
M
muli 已提交
82

A
rebuilt  
Aston Zhang 已提交
83
```
M
Mu Li 已提交
84
make pdf
M
muli 已提交
85
```
86

A
readme  
Aston Zhang 已提交
87 88
## 其他安装

A
rebuilt  
Aston Zhang 已提交
89
```
A
Aston Zhang 已提交
90
python -m spacy download en # 需已 pip install spacy
A
readme  
Aston Zhang 已提交
91 92
```

A
style  
Aston Zhang 已提交
93 94
## 样式规范

A
Aston Zhang 已提交
95 96 97 98 99 100
贡献请遵照本教程的[样式规范](STYLE_GUIDE.md)


## 中英文术语对照

翻译请参照[中英文术语对照](TERMINOLOGY.md)
A
style  
Aston Zhang 已提交
101