From 14f729c72a242e87669774feb38d06fc471d3995 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 26 Feb 2018 12:26:35 +0100 Subject: [PATCH] Add subtok label to parser --- spacy/syntax/arc_eager.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/syntax/arc_eager.pyx b/spacy/syntax/arc_eager.pyx index 30314a227..1defa88de 100644 --- a/spacy/syntax/arc_eager.pyx +++ b/spacy/syntax/arc_eager.pyx @@ -319,7 +319,7 @@ cdef class ArcEager(TransitionSystem): (SHIFT, ['']), (REDUCE, ['']), (RIGHT, []), - (LEFT, []), + (LEFT, ['subtok']), (BREAK, ['ROOT'])) )) seen_actions = set()