From a0c7dabb722d0985e0f53f09561e10092125ae69 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 28 Oct 2017 23:01:35 +0000 Subject: [PATCH] Fix bug in 8-token parser features --- spacy/syntax/_state.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/syntax/_state.pxd b/spacy/syntax/_state.pxd index 803348b53..5470df470 100644 --- a/spacy/syntax/_state.pxd +++ b/spacy/syntax/_state.pxd @@ -110,7 +110,7 @@ cdef cppclass StateC: ids[3] = this.S(1) ids[4] = this.H(this.S(0)) ids[5] = this.L(this.B(0), 1) - ids[6] = this.L(this.S(0), 2) + ids[6] = this.L(this.S(0), 1) ids[7] = this.R(this.S(0), 1) elif n == 13: ids[0] = this.B(0)