From 61142a8eff4a1ba3610f590922d8e7422c8be650 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 18 Dec 2014 09:15:03 +1100 Subject: [PATCH] * Tweak features --- spacy/syntax/_parse_features.pyx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spacy/syntax/_parse_features.pyx b/spacy/syntax/_parse_features.pyx index 3722c0b07..d87db9c9c 100644 --- a/spacy/syntax/_parse_features.pyx +++ b/spacy/syntax/_parse_features.pyx @@ -164,12 +164,12 @@ s0_n0 = ( ) s1_n0 = ( - (S0_has_head, S1p, N0p), - (S0_has_head, S1c, N0c), - (S0_has_head, S1c, N0p), - (S0_has_head, S1p, N0c), - (S0_has_head, S1W, S1p, N0p), - (S0_has_head, S1p, N0W, N0p) + (S1p, N0p), + (S1c, N0c), + (S1c, N0p), + (S1p, N0c), + (S1W, S1p, N0p), + (S1p, N0W, N0p) )