forked from Orange-OpenSource/conllueditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortcuts.json
61 lines (60 loc) · 1.5 KB
/
shortcuts.json
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
{
"comment": "this files defines shortcuts to fast edit upos, xpos, feats and deprel of the active word. For xpos two values can to be given in a list: XPOS and UPOS). +, -, ? and = have hardwired meanings and cannot be used in shortcuts",
"upos": {
"AV": "ADV",
"C": "CCONJ",
"D": "DET",
"E": "PROPN",
"I": "INTJ",
"AJ": "ADJ",
"N": "NOUN",
"P": "ADP",
"R": "PRON",
"S": "SCONJ",
"T": "PART",
"U": "NUM",
"V": "VERB",
"X": "AUX",
".": "PUNCT"
},
"feats": {
":ns": "Number=Sing",
":np": "Number=Plur",
":gf": "Gender=Fem",
":gm": "Gender=Masc",
":p1": "Person=1",
":p2": "Person=2",
":p3": "Person=3",
":tp": "Tense=Present",
":ta": "Tense=Past",
":mi": "Mood=Ind",
":vi": "VerbForm=Inf",
":vf": "VerbForm=Fin",
":vp": "VerbForm=Part"
},
"deplabel": {
"a": "amod",
"b": "advmod",
"c": "case",
"d": "det",
"f": "fixed",
"l": "acl",
"m": "nmod",
"o": "obj",
"p": "punct",
"r": "acl:relcl",
"t": "parataxis",
"s": "nsubj",
"u": "nummod",
"v": "advcl",
"x": "xcomp",
"h": "aux"
},
"xpos": {
"i": ["impf", "AUX"],
"j": ["pred", "PART"],
"k": ["verbnoun", "NOUN"],
"F": ["place", "PROPN"],
"g": ["person", "PROPN"]
}
}