mirror of https://github.com/explosion/spaCy.git
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"},
|
"VBN": {POS: VERB, "VerbForm": "part", "Tense": "past", "Aspect": "perf"},
|
||||||
"VBP": {POS: VERB, "VerbForm": "fin", "Tense": "pres"},
|
"VBP": {POS: VERB, "VerbForm": "fin", "Tense": "pres"},
|
||||||
"VBZ": {POS: VERB, "VerbForm": "fin", "Tense": "pres", "Number": "sing", "Person": 3},
|
"VBZ": {POS: VERB, "VerbForm": "fin", "Tense": "pres", "Number": "sing", "Person": 3},
|
||||||
"WDT": {POS: ADJ, "PronType": "int|rel"},
|
"WDT": {POS: ADJ, "PronType": "int,rel"},
|
||||||
"WP": {POS: NOUN, "PronType": "int|rel"},
|
"WP": {POS: NOUN, "PronType": "int,rel"},
|
||||||
"WP$": {POS: ADJ, "Poss": "yes", "PronType": "int|rel"},
|
"WP$": {POS: ADJ, "Poss": "yes", "PronType": "int,rel"},
|
||||||
"WRB": {POS: ADV, "PronType": "int|rel"},
|
"WRB": {POS: ADV, "PronType": "int,rel"},
|
||||||
"ADD": {POS: X},
|
"ADD": {POS: X},
|
||||||
"NFP": {POS: PUNCT},
|
"NFP": {POS: PUNCT},
|
||||||
"GW": {POS: X},
|
"GW": {POS: X},
|
||||||
|
|
Loading…
Reference in New Issue