mirror of https://github.com/explosion/spaCy.git
Fix tag map
This commit is contained in:
parent
577adad945
commit
69baf1c9a8
|
@ -22,21 +22,21 @@ TAG_MAP = {
|
||||||
"ART": {TAG: DET, "PronType": "art"},
|
"ART": {TAG: DET, "PronType": "art"},
|
||||||
"CARD": {TAG: NUM, "NumType": "card"},
|
"CARD": {TAG: NUM, "NumType": "card"},
|
||||||
"FM": {TAG: X, "Foreign": "yes"},
|
"FM": {TAG: X, "Foreign": "yes"},
|
||||||
"ITJ": {TAG: "INTJ"},
|
"ITJ": {TAG: INTJ},
|
||||||
"KOKOM": {TAG: "CONJ", "ConjType": "comp"},
|
"KOKOM": {TAG: CONJ, "ConjType": "comp"},
|
||||||
"KON": {TAG: "CONJ"},
|
"KON": {TAG: CONJ},
|
||||||
"KOUI": {TAG: "SCONJ"},
|
"KOUI": {TAG: SCONJ},
|
||||||
"KOUS": {TAG: "SCONJ"},
|
"KOUS": {TAG: SCONJ},
|
||||||
"NE": {TAG: "PROPN"},
|
"NE": {TAG: PROPN},
|
||||||
"NNE": {TAG: "PROPN"},
|
"NNE": {TAG: PROPN},
|
||||||
"NN": {TAG: "NOUN"},
|
"NN": {TAG: NOUN},
|
||||||
"PAV": {TAG: ADV, "PronType": "dem"},
|
"PAV": {TAG: ADV, "PronType": "dem"},
|
||||||
"PROAV": {TAG: ADV, "PronType": "dem"},
|
"PROAV": {TAG: ADV, "PronType": "dem"},
|
||||||
"PDAT": {TAG: DET, "PronType": "dem"},
|
"PDAT": {TAG: DET, "PronType": "dem"},
|
||||||
"PDS": {TAG: PRON, "PronType": "dem"},
|
"PDS": {TAG: PRON, "PronType": "dem"},
|
||||||
"PIAT": {TAG: DET, "PronType": "ind|neg|tot"},
|
"PIAT": {TAG: DET, "PronType": "ind|neg|tot"},
|
||||||
"PIDAT": {TAG: DET, "AdjType": "pdt", "PronType": "ind|neg|tot"},
|
"PIDAT": {TAG: DET, "AdjType": "pdt", "PronType": "ind|neg|tot"},
|
||||||
"PIS": {TAG: PRON, "PronType": "ind|Neg|tot"},
|
"PIS": {TAG: PRON, "PronType": "ind|neg|tot"},
|
||||||
"PPER": {TAG: PRON, "PronType": "prs"},
|
"PPER": {TAG: PRON, "PronType": "prs"},
|
||||||
"PPOSAT": {TAG: DET, "Poss": "yes", "PronType": "prs"},
|
"PPOSAT": {TAG: DET, "Poss": "yes", "PronType": "prs"},
|
||||||
"PPOSS": {TAG: PRON, "Poss": "yes", "PronType": "prs"},
|
"PPOSS": {TAG: PRON, "Poss": "yes", "PronType": "prs"},
|
||||||
|
@ -45,7 +45,7 @@ TAG_MAP = {
|
||||||
"PRF": {TAG: PRON, "PronType": "prs", "Reflex": "yes"},
|
"PRF": {TAG: PRON, "PronType": "prs", "Reflex": "yes"},
|
||||||
"PTKA": {TAG: PART},
|
"PTKA": {TAG: PART},
|
||||||
"PTKANT": {TAG: PART, "PartType": "res"},
|
"PTKANT": {TAG: PART, "PartType": "res"},
|
||||||
"PTKNEG": {TAG: PART, "Negative": "neg"},
|
"PTKNEG": {TAG: PART, "Negative": "yes"},
|
||||||
"PTKVZ": {TAG: PART, "PartType": "vbp"},
|
"PTKVZ": {TAG: PART, "PartType": "vbp"},
|
||||||
"PTKZU": {TAG: PART, "PartType": "inf"},
|
"PTKZU": {TAG: PART, "PartType": "inf"},
|
||||||
"PWAT": {TAG: DET, "PronType": "int"},
|
"PWAT": {TAG: DET, "PronType": "int"},
|
||||||
|
|
Loading…
Reference in New Issue