From e737750a02d4dd9f3b4c067da5c468cb3df8e56a Mon Sep 17 00:00:00 2001 From: Matthw Honnibal Date: Thu, 17 Oct 2019 21:10:08 +0200 Subject: [PATCH] Fix bilstm_depth default in pretrain command --- spacy/cli/pretrain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/pretrain.py b/spacy/cli/pretrain.py index 891e15fa2..13a2d9b36 100644 --- a/spacy/cli/pretrain.py +++ b/spacy/cli/pretrain.py @@ -81,7 +81,7 @@ def pretrain( output_dir, width=96, depth=4, - bilstm_depth=2, + bilstm_depth=0, embed_rows=2000, loss_func="cosine", use_vectors=False,