-
Notifications
You must be signed in to change notification settings - Fork 271
/
index.html
237 lines (232 loc) · 5.57 KB
/
index.html
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
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8">
<link type=image/x-icon href="img/DDlogo.ico" rel="shortcut icon">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Chinese NLP</title>
<link rel="stylesheet" href="https://unpkg.com/docute@4/dist/docute.css">
<script src="https://unpkg.com/docute-google-analytics@1/dist/index.min.js"></script>
<style>
span.t {padding: 3px 10px 3px 10px; border-radius:9px; color:white; background:rgb(6,125,247)}
</style>
</head>
<body>
<div id="docute"></div>
<script src="https://unpkg.com/docute@4/dist/docute.js"></script>
<script>
new Docute({
title: '中文自然语言处理 Chinese NLP',
plugins: [
docuteGoogleAnalytics('UA-135652957-1')
],
nav: [
{
title: '主页 Home',
link: '/'
},
{
title: 'GitHub',
link: 'https://github.com/didi/ChineseNLP'
}
],
sidebar: [
{
title: 'Fields',
links: [
{
title: "Co-reference Resolution",
link: "/docs/co-reference_resolution"
},
{
title: "Constituency Parsing",
link: "/docs/constituency_parsing"
},
{
title: "Dialogue State Management",
link: "/docs/dialogue_state_management"
},
{
title: "Emotion Classification",
link: "/docs/emotion_classification"
},
{
title: "Entity Linking",
link: "/docs/entity_linking"
},
{
title: "Entity Tagging",
link: "/docs/entity_tagging"
},
{
title: "Language Modeling",
link: "/docs/language_modeling"
},
{
title: "Machine Translation",
link: "/docs/machine_translation"
},
{
title: "POS Tagging",
link: "/docs/pos_tagging"
},
{
title: "Question Answering",
link: "/docs/question_answering"
},
{
title: "Relation Extraction",
link: "/docs/relation_extraction"
},
{
title: "Sentiment Analysis",
link: "/docs/sentiment_analysis"
},
{
title: "Simplified/traditional Conversion",
link: "/docs/simplified_traditional_Chinese_conversion"
},
{
title: "Spell Correction",
link: "/docs/spell_correction"
},
{
title: "Text Summarization",
link: "/docs/text_summarization"
},
{
title: "Topic Classification",
link: "/docs/topic_classification"
},
{
title: "Transliteration",
link: "/docs/transliteration"
},
{
title: "Word Embedding",
link: "/docs/word_embedding"
},
{
title: "Word Segmentation",
link: "/docs/word_segmentation"
}
]
},
{
title: "Misc",
links: [
{
title: "Contribute",
link: "/contribute"
},
{
title: "Template",
link: "/docs/template"
}
]
}
],
overrides: {
'/': {
language: 'English'
},
'/zh/': {
language: '中文',
sidebar: [
{
title: '任务',
links: [
{
title: "指代消歧 (Co-reference Resolution)",
link: "/zh/docs/co-reference_resolution"
},
{
title: "对话状态管理 (Dialogue State Management)",
link: "/zh/docs/dialogue_state_management"
},
{
title: "情绪分类 (Emotion Classification)",
link: "/zh/docs/emotion_classification"
},
{
title: "实体链接 (Entity Linking)",
link: "/zh/docs/entity_linking"
},
{
title: "实体标注 (Entity Tagging)",
link: "/zh/docs/entity_tagging"
},
{
title: "语言模型 (Language Modeling)",
link: "/zh/docs/language_modeling"
},
{
title: "机器翻译 (Machine Translation)",
link: "/zh/docs/machine_translation"
},
{
title: "词性标注 (POS Tagging)",
link: "/zh/docs/pos_tagging"
},
{
title: "问答 (Question Answering)",
link: "/zh/docs/question_answering"
},
{
title: "关系抽取 (Relation Extraction)",
link: "/zh/docs/relation_extraction"
},
{
title: "情感分析 (Sentiment Analysis)",
link: "/zh/docs/sentiment_analysis"
},
{
title: "繁简转化 (Simplified/traditional Conversion)",
link: "/zh/docs/simplified_traditional_Chinese_conversion"
},
{
title: "拼写纠正 (Spell Correction)",
link: "/zh/docs/spell_correction"
},
{
title: "文本摘要 (Text Summarization)",
link: "/zh/docs/text_summarization"
},
{
title: "话题分类 (Topic Classification)",
link: "/zh/docs/topic_classification"
},
{
title: "音译 (Transliteration)",
link: "/zh/docs/transliteration"
},
{
title: "词向量 (Word Embedding)",
link: "/zh/docs/word_embedding"
},
{
title: "中文分词 (Word Segmentation)",
link: "/zh/docs/word_segmentation"
}
]
},
{
title: "其他",
links: [
{
title: "贡献",
link: "/zh/contribute"
},
{
title: "模板",
link: "/zh/docs/template"
}
]
}
]
}
}
})
</script>
</body>
</html>