* Add POS tags to support SWBD tag set

This commit is contained in:
Matthew Honnibal 2015-02-11 14:08:28 -05:00
parent e425de6d2b
commit 0b7e769211
1 changed files with 3 additions and 1 deletions

View File

@ -178,7 +178,9 @@ POS_TAGS = {
"GW": (X, {}), "GW": (X, {}),
"AFX": (X, {}), "AFX": (X, {}),
"HYPH": (PUNCT, {}), "HYPH": (PUNCT, {}),
"XX": (X, {}) "XX": (X, {}),
"BES": (VERB, {'tenspect': PRESENT, 'person': THIRD}),
"HVS": (VERB, {'tenspect': PRESENT, 'person': THIRD})
} }