From 137b210bcfbb5eced0fd44d56ba9d5cf515b89f0 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 16 Apr 2017 18:02:42 +0200 Subject: [PATCH] Restore use of FTRL training --- spacy/syntax/parser.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/syntax/parser.pyx b/spacy/syntax/parser.pyx index 4473045e9..0bc9cb4ef 100644 --- a/spacy/syntax/parser.pyx +++ b/spacy/syntax/parser.pyx @@ -40,7 +40,7 @@ from ..strings cimport StringStore from ..gold cimport GoldParse -USE_FTRL = False +USE_FTRL = True DEBUG = False def set_debug(val): global DEBUG