mirror of https://github.com/explosion/spaCy.git
Fix morphological features in de tag_map
This commit is contained in:
parent
1a10bf29bc
commit
3a667833d1
|
@ -10,7 +10,7 @@ TAG_MAP = {
|
||||||
"$,": {POS: PUNCT, "PunctType": "comm"},
|
"$,": {POS: PUNCT, "PunctType": "comm"},
|
||||||
"$.": {POS: PUNCT, "PunctType": "peri"},
|
"$.": {POS: PUNCT, "PunctType": "peri"},
|
||||||
"ADJA": {POS: ADJ},
|
"ADJA": {POS: ADJ},
|
||||||
"ADJD": {POS: ADJ, "Variant": "short"},
|
"ADJD": {POS: ADJ},
|
||||||
"ADV": {POS: ADV},
|
"ADV": {POS: ADV},
|
||||||
"APPO": {POS: ADP, "AdpType": "post"},
|
"APPO": {POS: ADP, "AdpType": "post"},
|
||||||
"APPR": {POS: ADP, "AdpType": "prep"},
|
"APPR": {POS: ADP, "AdpType": "prep"},
|
||||||
|
@ -32,7 +32,7 @@ TAG_MAP = {
|
||||||
"PDAT": {POS: DET, "PronType": "dem"},
|
"PDAT": {POS: DET, "PronType": "dem"},
|
||||||
"PDS": {POS: PRON, "PronType": "dem"},
|
"PDS": {POS: PRON, "PronType": "dem"},
|
||||||
"PIAT": {POS: DET, "PronType": "ind|neg|tot"},
|
"PIAT": {POS: DET, "PronType": "ind|neg|tot"},
|
||||||
"PIDAT": {POS: DET, "AdjType": "pdt", "PronType": "ind|neg|tot"},
|
"PIDAT": {POS: DET, "PronType": "ind|neg|tot"},
|
||||||
"PIS": {POS: PRON, "PronType": "ind|neg|tot"},
|
"PIS": {POS: PRON, "PronType": "ind|neg|tot"},
|
||||||
"PPER": {POS: PRON, "PronType": "prs"},
|
"PPER": {POS: PRON, "PronType": "prs"},
|
||||||
"PPOSAT": {POS: DET, "Poss": "yes", "PronType": "prs"},
|
"PPOSAT": {POS: DET, "Poss": "yes", "PronType": "prs"},
|
||||||
|
@ -42,7 +42,7 @@ TAG_MAP = {
|
||||||
"PRF": {POS: PRON, "PronType": "prs", "Reflex": "yes"},
|
"PRF": {POS: PRON, "PronType": "prs", "Reflex": "yes"},
|
||||||
"PTKA": {POS: PART},
|
"PTKA": {POS: PART},
|
||||||
"PTKANT": {POS: PART, "PartType": "res"},
|
"PTKANT": {POS: PART, "PartType": "res"},
|
||||||
"PTKNEG": {POS: PART, "Polarity": "Neg"},
|
"PTKNEG": {POS: PART, "Polarity": "neg"},
|
||||||
"PTKVZ": {POS: PART, "PartType": "vbp"},
|
"PTKVZ": {POS: PART, "PartType": "vbp"},
|
||||||
"PTKZU": {POS: PART, "PartType": "inf"},
|
"PTKZU": {POS: PART, "PartType": "inf"},
|
||||||
"PWAT": {POS: DET, "PronType": "int"},
|
"PWAT": {POS: DET, "PronType": "int"},
|
||||||
|
|
Loading…
Reference in New Issue