From 3a667833d1a37ffa826ebb3ca76b057c1ce712e3 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 7 Mar 2019 21:57:43 +0100 Subject: [PATCH] Fix morphological features in de tag_map --- spacy/lang/de/tag_map.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spacy/lang/de/tag_map.py b/spacy/lang/de/tag_map.py index 3bb6247c4..394478145 100644 --- a/spacy/lang/de/tag_map.py +++ b/spacy/lang/de/tag_map.py @@ -10,7 +10,7 @@ TAG_MAP = { "$,": {POS: PUNCT, "PunctType": "comm"}, "$.": {POS: PUNCT, "PunctType": "peri"}, "ADJA": {POS: ADJ}, - "ADJD": {POS: ADJ, "Variant": "short"}, + "ADJD": {POS: ADJ}, "ADV": {POS: ADV}, "APPO": {POS: ADP, "AdpType": "post"}, "APPR": {POS: ADP, "AdpType": "prep"}, @@ -32,7 +32,7 @@ TAG_MAP = { "PDAT": {POS: DET, "PronType": "dem"}, "PDS": {POS: PRON, "PronType": "dem"}, "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"}, "PPER": {POS: PRON, "PronType": "prs"}, "PPOSAT": {POS: DET, "Poss": "yes", "PronType": "prs"}, @@ -42,7 +42,7 @@ TAG_MAP = { "PRF": {POS: PRON, "PronType": "prs", "Reflex": "yes"}, "PTKA": {POS: PART}, "PTKANT": {POS: PART, "PartType": "res"}, - "PTKNEG": {POS: PART, "Polarity": "Neg"}, + "PTKNEG": {POS: PART, "Polarity": "neg"}, "PTKVZ": {POS: PART, "PartType": "vbp"}, "PTKZU": {POS: PART, "PartType": "inf"}, "PWAT": {POS: DET, "PronType": "int"},