From 547464609d8da5230bf2bcbb020b2abfde5dd216 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Tue, 9 Jul 2019 21:50:30 +0200 Subject: [PATCH] Remove merge_subtokens from parser postprocessing for now --- spacy/pipeline/pipes.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/pipeline/pipes.pyx b/spacy/pipeline/pipes.pyx index 1d4eeadce..1f4dd4253 100644 --- a/spacy/pipeline/pipes.pyx +++ b/spacy/pipeline/pipes.pyx @@ -1001,7 +1001,7 @@ cdef class DependencyParser(Parser): @property def postprocesses(self): - return [nonproj.deprojectivize, merge_subtokens] + return [nonproj.deprojectivize] def add_multitask_objective(self, target): if target == "cloze":