mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
Fix disjunctive features in English tag map
This commit is contained in:
parent
f03640b41f
commit
6f98313254
|
@ -52,10 +52,10 @@ TAG_MAP = {
|
|||
"VBN": {POS: VERB, "VerbForm": "part", "Tense": "past", "Aspect": "perf"},
|
||||
"VBP": {POS: VERB, "VerbForm": "fin", "Tense": "pres"},
|
||||
"VBZ": {POS: VERB, "VerbForm": "fin", "Tense": "pres", "Number": "sing", "Person": 3},
|
||||
"WDT": {POS: ADJ, "PronType": "int|rel"},
|
||||
"WP": {POS: NOUN, "PronType": "int|rel"},
|
||||
"WP$": {POS: ADJ, "Poss": "yes", "PronType": "int|rel"},
|
||||
"WRB": {POS: ADV, "PronType": "int|rel"},
|
||||
"WDT": {POS: ADJ, "PronType": "int,rel"},
|
||||
"WP": {POS: NOUN, "PronType": "int,rel"},
|
||||
"WP$": {POS: ADJ, "Poss": "yes", "PronType": "int,rel"},
|
||||
"WRB": {POS: ADV, "PronType": "int,rel"},
|
||||
"ADD": {POS: X},
|
||||
"NFP": {POS: PUNCT},
|
||||
"GW": {POS: X},
|
||||
|
|
Loading…
Reference in New Issue
Block a user