From f112e7754e4f4368f0a82c3aae3a58f5300176f0 Mon Sep 17 00:00:00 2001 From: Petter Hohle Date: Wed, 28 Dec 2016 18:39:01 +0100 Subject: [PATCH] Add PART to tag map 16 of the 17 PoS tags in the UD tag set is added; PART is missing. --- spacy/language_data/tag_map.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spacy/language_data/tag_map.py b/spacy/language_data/tag_map.py index f5b6b5040..966960721 100644 --- a/spacy/language_data/tag_map.py +++ b/spacy/language_data/tag_map.py @@ -20,5 +20,6 @@ TAG_MAP = { "X": {POS: X}, "CONJ": {POS: CONJ}, "ADJ": {POS: ADJ}, - "VERB": {POS: VERB} + "VERB": {POS: VERB}, + "PART": {POS: PART} }