-
Notifications
You must be signed in to change notification settings - Fork 217
/
_config.yml
249 lines (216 loc) · 6.93 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
markdown: kramdown
highlighter: rouge
url: https://morvanzhou.github.io
exclude: ['README.md']
# collection and their defaults
collections:
front-pages:
output: true
modules-intro:
output: true
loop-description:
output: false
tutorials:
output: true
permalink: /:collection/:path/
table-contents:
output: true
permalink: /tutorials/:path/
defaults:
- scope:
path: "_front-pages"
values:
layout: front-page
enable_ads: true
- scope:
path: "_modules-intro"
values:
layout: front-page
- scope:
path: "_table-contents"
values:
layout: table-of-contents
- scope:
path: "_tutorials"
values:
layout: tutorial-post
editor: 莫烦
author: 莫烦
author-link: "#"
enable_ads: true
published: true #TOD: change back to true
# module descriptions
- scope:
path: "_loop-description/python-basic"
values:
module: python-basic
- scope:
path: "_loop-description/home"
values:
module: home
- scope:
path: "_loop-description/data-manipulation"
values:
module: data-manipulation
- scope:
path: "_loop-description/machine-learning"
values:
module: machine-learning
- scope:
path: "_loop-description/others"
values:
module: others
# tutorial default
- scope:
path: "_tutorials/machine-learning/ML-intro"
values:
series: 有趣的机器学习
tut-permalink: /tutorials/machine-learning/ML-intro/
category: ML-intro
keywords: 机器学习, 简介, 动画
thumbnail: /static/img/course_cover/ML_intro.png
- scope:
path: "_tutorials/machine-learning/reinforcement-learning"
values:
series: 强化学习 Reinforcement Learning
tut-permalink: /tutorials/machine-learning/reinforcement-learning/
category: reinforcement-learning
keywords: reinforcement learning, 强化学习, tensorflow
thumbnail: /static/img/course_cover/rl.jpg
- scope:
path: "_tutorials/machine-learning/evolutionary-algorithm"
values:
series: 进化算法 Evolutionary Algorithm
tut-permalink: /tutorials/machine-learning/evolutionary-algorithm/
category: evolutionary-algorithm
keywords: evolutionary algorithm, 进化算法, 遗传算法, genetic algorithm, neuro evalution
thumbnail: /static/img/course_cover/EA.jpg
- scope:
path: "_tutorials/machine-learning/keras"
values:
series: Keras
tut-permalink: /tutorials/machine-learning/keras/
category: keras
keywords: keras, 神经网络, tensorflow, theano
thumbnail: /static/img/course_cover/keras.jpg
- scope:
path: "_tutorials/machine-learning/torch"
values:
series: PyTorch
tut-permalink: /tutorials/machine-learning/torch/
category: torch
keywords: Torch, pytorch, 神经网络
thumbnail: /static/img/course_cover/torch.jpg
- scope:
path: "_tutorials/machine-learning/sklearn"
values:
series: Sklearn
tut-permalink: /tutorials/machine-learning/sklearn/
category: sklearn
keywords: sklearn, scikit-learn, 机器学习
thumbnail: /sstatic/img/course_cover/sklearn.jpg
- scope:
path: "_tutorials/machine-learning/tensorflow"
values:
series: Tensorflow
tut-permalink: /tutorials/machine-learning/tensorflow/
category: tensorflow
keywords: tensorflow, tensorboard, 机器学习, 神经网络
thumbnail: /static/img/course_cover/tf.jpg
- scope:
path: "_tutorials/machine-learning/theano"
values:
series: Theano
tut-permalink: /tutorials/machine-learning/theano/
category: theano
keywords: theano, 机器学习, 神经网络
thumbnail: /static/img/course_cover/theano.jpg
- scope:
path: "_tutorials/machine-learning/ML-practice"
values:
series: 机器学习实战
tut-permalink: /tutorials/machine-learning/ML-practice/
category: ML-practice
keywords: 从头开始, 实战, 机器学习, 神经网络
thumbnail: /static/img/course_cover/ML-practice.jpg
- scope:
path: "_tutorials/machine-learning/computer-vision"
values:
series: 计算机视觉
tut-permalink: /tutorials/machine-learning/computer-vision/
category: computer-vision
keywords: tensorflow, 机器学习, 神经网络, 计算机视觉,Computer-vision
thumbnail: /static/img/course_cover/computer-vision.jpg
- scope:
path: "_tutorials/data-manipulation/np-pd"
values:
series: Numpy & Pandas
tut-permalink: /tutorials/data-manipulation/np-pd/
category: np-pd
keywords: numpy, pandas, 数据, 处理
thumbnail: /static/img/course_cover/np_pd.jpg
- scope:
path: "_tutorials/data-manipulation/plt"
values:
series: Matplotlib
tut-permalink: /tutorials/data-manipulation/plt/
category: plt
keywords: matplotlib, plt, 数据可视化
thumbnail: /static/img/course_cover/plt.jpg
- scope:
path: "_tutorials/data-manipulation/scraping"
values:
series: 网页爬虫
tut-permalink: /tutorials/data-manipulation/scraping/
category: scraping
keywords: scraping, 爬虫, beautifulsoup
thumbnail: /static/img/course_cover/scraping.jpg
- scope:
path: "_tutorials/python-basic/multiprocessing"
values:
series: 多进程 Multiprocessing
tut-permalink: /tutorials/python-basic/multiprocessing/
category: multiprocessing
keywords: python, 基础, 多进程, multiprocessing
thumbnail: /static/img/course_cover/multiprocessing.jpg
- scope:
path: "_tutorials/python-basic/threading"
values:
series: 多线程 Threading
tut-permalink: /tutorials/python-basic/threading/
category: threading
keywords: python, 基础, 多线程, threading
thumbnail: /static/img/course_cover/threading.jpg
- scope:
path: "_tutorials/python-basic/tkinter"
values:
series: 窗口 Tkinter
tut-permalink: /tutorials/python-basic/tkinter/
category: tkinter
keywords: python, 基础, GUI, 窗口, tkinter, tk
thumbnail: /static/img/course_cover/tkinter.jpg
- scope:
path: "_tutorials/python-basic/basic"
values:
series: Python 基础
tut-permalink: /tutorials/python-basic/basic/
category: basic
keywords: python, 基础
thumbnail: /static/img/course_cover/python_basic.jpg
- scope:
path: "_tutorials/others/linux-basic"
values:
series: Linux 简易教学
tut-permalink: /tutorials/others/linux-basic/
category: linux-basic
keywords: linux, 基础
thumbnail: /static/img/course_cover/ML_intro.png
- scope:
path: "_tutorials/others/git"
values:
series: Git 版本管理
tut-permalink: /tutorials/others/git/
category: git
keywords: 其他, git, VCS
thumbnail: /static/img/course_cover/git.jpg
published: true