From f8f2f4e545f752e25160dae93691828a01d8dce5 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 26 Aug 2015 19:18:19 +0200 Subject: [PATCH] * Temporarily add PUNC name to parts_of_specch dictionary, until better solution --- spacy/parts_of_speech.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/parts_of_speech.pyx b/spacy/parts_of_speech.pyx index 994a48eba..7081cfab9 100644 --- a/spacy/parts_of_speech.pyx +++ b/spacy/parts_of_speech.pyx @@ -15,6 +15,7 @@ UNIV_POS_NAMES = { "VERB": VERB, "X": X, "PUNCT": PUNCT, + "PUNC": PUNCT, "SPACE": SPACE, "EOL": EOL }