From 5b67bcbee0887d11f421456dddb02bba7dacfa64 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 23 May 2017 15:20:16 -0500 Subject: [PATCH] Increase default embed size to 7500 --- spacy/pipeline.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/pipeline.pyx b/spacy/pipeline.pyx index af71b1ad6..7ca2ed99d 100644 --- a/spacy/pipeline.pyx +++ b/spacy/pipeline.pyx @@ -43,7 +43,7 @@ class TokenVectorEncoder(object): name = 'tok2vec' @classmethod - def Model(cls, width=128, embed_size=5000, **cfg): + def Model(cls, width=128, embed_size=7500, **cfg): """Create a new statistical model for the class. width (int): Output size of the model.