-
Notifications
You must be signed in to change notification settings - Fork 11
/
dependency-tree.js
320 lines (311 loc) · 10.4 KB
/
dependency-tree.js
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
var dependencyDict, levelHeight, maximum, parseConll, tagDict, under, wordHeight, wordWidth;
wordWidth = 60;
wordHeight = 20;
levelHeight = function(level) {
return 2 + Math.pow(level, 1.8) * 10;
};
window.drawTree = function(svgElement, conllData) {
var arrows, data, dependencies, e, edge, edges, i, item, j, k, len, len1, len2, svg, tags, treeHeight, treeWidth, triangle, words;
svg = d3.select(svgElement);
data = parseConll(conllData);
// compute edge levels
edges = (function() {
var i, len, results;
results = [];
for (i = 0, len = data.length; i < len; i++) {
item = data[i];
if (item.id) {
results.push(item);
}
}
return results;
})();
for (i = 0, len = edges.length; i < len; i++) {
edge = edges[i];
for (j = 0, len1 = edges.length; j < len1; j++) {
edge = edges[j];
edge.level = 1 + maximum((function() {
var k, len2, results;
results = [];
for (k = 0, len2 = edges.length; k < len2; k++) {
e = edges[k];
if (under(edge, e)) {
results.push(e.level);
}
}
return results;
})());
}
}
// compute height
treeWidth = wordWidth * data.length - wordWidth / 3;
treeHeight = levelHeight(maximum((function() {
var k, len2, results;
results = [];
for (k = 0, len2 = data.length; k < len2; k++) {
edge = data[k];
results.push(edge.level);
}
return results;
})())) + 2 * wordHeight;
for (k = 0, len2 = data.length; k < len2; k++) {
item = data[k];
item.bottom = treeHeight - 1.8 * wordHeight;
item.top = item.bottom - levelHeight(item.level);
item.left = treeWidth - item.id * wordWidth;
item.right = treeWidth - item.head * wordWidth;
item.mid = (item.right + item.left) / 2;
item.diff = (item.right - item.left) / 4;
item.arrow = item.top + (item.bottom - item.top) * .25;
}
// draw svg
svg.selectAll('text, path').remove();
svg.attr('xmlns', 'http://www.w3.org/2000/svg');
svg.attr('width', treeWidth + 2 * wordWidth / 3).attr('height', treeHeight + wordHeight / 2);
words = svg.selectAll('.form').data(data).enter().append('text').text(function(d) {
return d.form;
}).attr('class', function(d) {
return `form w${d.id}`;
}).attr('x', function(d) {
return treeWidth - wordWidth * d.id;
}).attr('y', treeHeight - wordHeight).on('mouseover', function(d) {
svg.selectAll('.form, .deprel, .edge, .arrow').classed('active', false);
svg.selectAll('.tag').attr('opacity', 0);
svg.selectAll(`.w${d.id}`).classed('active', true);
return svg.select(`.tag.w${d.id}`).attr('opacity', 1);
}).on('mouseout', function(d) {
svg.selectAll('.form, .deprel, .edge, .arrow').classed('active', false);
return svg.selectAll('.tag').attr('opacity', 0);
}).attr('text-anchor', 'middle');
tags = svg.selectAll('.tag').data(data).enter().append('text').text(function(d) {
return d.tag;
}).attr('class', function(d) {
return `tag w${d.id}`;
}).attr('x', function(d) {
return treeWidth - wordWidth * d.id;
}).attr('y', treeHeight).attr('opacity', 0).attr('text-anchor', 'middle').attr('font-size', '90%');
edges = svg.selectAll('.edge').data(data).enter().append('path').filter(function(d) {
return d.id;
}).attr('class', function(d) {
return `edge w${d.id} w${d.head}`;
}).attr('d', function(d) {
return `M${d.left},${d.bottom} C${d.mid - d.diff},${d.top} ${d.mid + d.diff},${d.top} ${d.right},${d.bottom}`;
}).attr('fill', 'none').attr('stroke', 'black').attr('stroke-width', '1.5');
dependencies = svg.selectAll('.deprel').data(data).enter().append('text').filter(function(d) {
return d.id;
}).text(function(d) {
return d.deprel;
}).attr('class', function(d) {
return `deprel w${d.id} w${d.head}`;
}).attr('x', function(d) {
return d.mid;
}).attr('y', function(d) {
return d.arrow - 7;
}).attr('text-anchor', 'middle').attr('font-size', '90%').append('title').text(function(d) {
return dependencyDict[d.deprel];
});
triangle = d3.svg.symbol().type('triangle-up').size(5);
return arrows = svg.selectAll('.arrow').data(data).enter().append('path').filter(function(d) {
return d.id;
}).attr('class', function(d) {
return `arrow w${d.id} w${d.head}`;
}).attr('d', triangle).attr('transform', function(d) {
return `translate(${d.mid}, ${d.arrow}) rotate(${d.id < d.head ? '' : '-'}90)`;
}).attr('fill', 'none').attr('stroke', 'black').attr('stroke-width', '1.5');
};
// functions
maximum = function(array) {
return Math.max(0, Math.max.apply(null, array));
};
under = function(edge1, edge2) {
var ma, mi;
[mi, ma] = edge1.id < edge1.head ? [edge1.id, edge1.head] : [edge1.head, edge1.id];
return edge1.id !== edge2.id && edge2.id >= mi && edge2.head >= mi && edge2.id <= ma && edge2.head <= ma;
};
parseConll = function(conllData) {
var _, cpos, data, deprel, form, fpos, head, i, id, len, line, ref, tag, upos, xpos;
data = [];
data.push({
id: 0,
form: 'ریشه',
tag: tagDict['root'],
level: 0
});
ref = conllData.split('\n').slice(2);
for (i = 0, len = ref.length; i < len; i++) {
line = ref[i];
if (!(line)) {
continue;
}
[id, form, _, upos, xpos, _, head, deprel] = line.split('\t');
if (xpos.includes('_')) {
[cpos, fpos] = xpos.split('_');
tag = tagDict[cpos] + ' ' + tagDict[fpos];
} else {
tag = tagDict[xpos];
}
data.push({
id: Number(id),
form: form,
tag: tag,
head: Number(head),
deprel: deprel,
level: 1
});
}
return data;
};
tagDict = {
'ADJ': 'صفت',
'ADP': 'حرف اضافه',
'ADV': 'قید',
'AUX': 'فعل کمکی',
'CCONJ': 'حرف ربط همپایهساز',
'DET': 'حرف تعریف',
'INTJ': 'حرف ندا',
'NOUN': 'اسم',
'NUM': 'شمار',
'PART': 'جزء دستوری',
'PRON': 'ضمیر',
'PROPN': 'اسم خاص',
'PUNCT': 'علامت نگارشی',
'SCONJ': 'حرف ربط وابستهساز',
'SYM': 'نماد',
'VERB': 'فعل',
'X': 'سایر',
'': '',
'1': 'اول',
'2': 'دوم',
'3': 'سوم',
'ACT': 'معلوم',
'ADR': 'نقش نمای ندا',
'AJCM': 'تفضیلی',
'AJP': 'مطلق',
'AJSUP': 'عالی',
'AMBAJ': 'صفت مبهم',
'ANM': 'جاندار',
'AVCM': 'تفضیلی',
'AVP': 'مطلق',
'AY': 'آینده اخباری',
'CL': 'سببی',
'COM': 'تفضیلی',
'CONJ': 'نقش نمای همپایگی',
'CREFX': 'بازتابی مشترک',
'DEMAJ': 'صفت اشاره',
'DEMON': 'اشاره',
'EXAJ': 'صفت تعجبی',
'GB': 'گذشته بعید اخباری',
'GBEL': 'گذشته بعید التزامی',
'GBES': 'گذشته بعید استمراری اخباری',
'GBESE': 'گذشته بعید استمراری التزامی',
'GEL': 'گذشته التزامی',
'GES': 'گذشته استمراری اخباری',
'GESEL': 'گذشته استمراری التزامی',
'GN': 'گذشته نقلی اخباری',
'GNES': 'گذشته نقلی استمراری اخباری',
'GS': 'گذشته ساده اخباری',
'H': 'حال اخباری',
'HA': 'حال امری',
'HEL': 'حال التزامی',
'IANM': 'بی جان',
'IDEN': 'شاخص',
'INTG': 'پرسشی',
'ISO': 'واژه تنها',
'JOPER': 'شخصی پیوسته',
'MODE': 'وجه',
'MODL': 'وجهی',
'N': 'اسم',
'NXT': 'چسبیدگی از چپ',
'PASS': 'مجهول',
'PERS': 'شخص',
'PLUR': 'جمع',
'POSADR': 'پسین',
'POSNUM': 'صفت شمارشی پسین',
'POST': 'مطلق',
'POSTP': 'حرف اضافه پسین',
'PR': 'ضمیر',
'PRADR': 'پیشین',
'PREM': 'پیش توصیفگر',
'PRENUM': 'صفت شمارشی پیشین',
'PREP': 'حرف اضافه پیشین',
'PRV': 'چسبیدگی از راست',
'PSUS': 'شبه جمله',
'PUNC': 'علامت نگارشی',
'QUAJ': 'صفت پرسشی',
'RECPR': 'متقابل',
'SADV': 'مختص',
'SEPER': 'شخصی جدا',
'SING': 'مفرد',
'SUBR': 'نقش نمای وابستگی',
'SUP': 'عالی',
'UCREFX': 'بازتابی غیرمشترک',
'V': 'فعل',
'root': ''
};
dependencyDict = {
'acl': 'adnominal clause',
'acl:relcl': 'relative clause modifier',
'advcl': 'adverbial clause modifier',
'advmod': 'adverbial modifier',
'advmod:emph': 'emphasizing form, intensifier',
'advmod:lmod': 'locative adverbial modifier',
'amod': 'adjectival modifier',
'appos': 'appositional modifier',
'aux': 'auxiliary',
'aux:pass': 'passive auxiliary',
'case': 'case marking',
'cc': 'coordinating conjunction',
'cc:preconj': 'preconjunct',
'ccomp': 'clausal complement',
'clf': 'classifier',
'compound': 'compound',
'compound:lvc': 'light verb construction',
'compound:prt': 'phrasal verb particle',
'compound:redup': 'reduplicated compounds',
'compound:svc': 'serial verb compounds',
'conj': 'conjunct',
'cop': 'copula',
'csubj': 'clausal subject',
'csubj:outer': 'outer clause clausal subject',
'csubj:pass': 'clausal passive subject',
'dep': 'unspecified deprel',
'det': 'determiner',
'det:numgov': 'pronominal quantifier governing the case of the noun',
'det:nummod': 'pronominal quantifier agreeing in case with the noun',
'det:poss': 'possessive determiner',
'discourse': 'discourse element',
'dislocated': 'dislocated elements',
'expl': 'expletive',
'expl:impers': 'impersonal expletive',
'expl:pass': 'reflexive pronoun used in reflexive passive',
'expl:pv': 'reflexive clitic with an inherently reflexive verb',
'fixed': 'fixed multiword expression',
'flat': 'flat multiword expression',
'flat:foreign': 'foreign words',
'flat:name': 'names',
'goeswith': 'goes with',
'iobj': 'indirect object',
'list': 'list',
'mark': 'marker',
'nmod': 'nominal modifier',
'nmod:poss': 'possessive nominal modifier',
'nmod:tmod': 'temporal modifier',
'nsubj': 'nominal subject',
'nsubj:outer': 'outer clause nominal subject',
'nsubj:pass': 'passive nominal subject',
'nummod': 'numeric modifier',
'nummod:gov': 'numeric modifier governing the case of the noun',
'obj': 'object',
'obl': 'oblique nominal',
'obl:agent': 'agent modifier',
'obl:arg': 'oblique argument',
'obl:lmod': 'locative modifier',
'obl:tmod': 'temporal modifier',
'orphan': 'orphan',
'parataxis': 'parataxis',
'punct': 'punctuation',
'reparandum': 'overridden disfluency',
'root': 'root',
'vocative': 'vocative',
'xcomp': 'open clausal complement'
};