From b9290397fb27a8d0fa79cf0405cb786d80ce0cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Dahl=20M=C3=B8llerh=C3=B8j?= Date: Thu, 3 May 2018 19:33:49 +0300 Subject: [PATCH] rename SP to _SP (#2289) --- spacy/gold.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/gold.pyx b/spacy/gold.pyx index a43e6e004..49ee9083d 100644 --- a/spacy/gold.pyx +++ b/spacy/gold.pyx @@ -447,7 +447,7 @@ cdef class GoldParse: for i, gold_i in enumerate(self.cand_to_gold): if doc[i].text.isspace(): self.words[i] = doc[i].text - self.tags[i] = 'SP' + self.tags[i] = '_SP' self.heads[i] = None self.labels[i] = None self.ner[i] = 'O'