mirror of https://github.com/explosion/spaCy.git
* Add POS tags to support SWBD tag set
This commit is contained in:
parent
e425de6d2b
commit
0b7e769211
|
@ -178,7 +178,9 @@ POS_TAGS = {
|
|||
"GW": (X, {}),
|
||||
"AFX": (X, {}),
|
||||
"HYPH": (PUNCT, {}),
|
||||
"XX": (X, {})
|
||||
"XX": (X, {}),
|
||||
"BES": (VERB, {'tenspect': PRESENT, 'person': THIRD}),
|
||||
"HVS": (VERB, {'tenspect': PRESENT, 'person': THIRD})
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue