From 92f4b9c8ead768cf2e50ff6ad5af6f500d24b4d7 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 17 Dec 2018 23:15:39 +0000 Subject: [PATCH] set max batch size to 1000 --- spacy/cli/train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/train.py b/spacy/cli/train.py index 3af0ba6ea..e32828527 100644 --- a/spacy/cli/train.py +++ b/spacy/cli/train.py @@ -130,7 +130,7 @@ def train( ) batch_sizes = util.compounding( util.env_opt("batch_from", 100.0), - util.env_opt("batch_to", 2000.0), + util.env_opt("batch_to", 1000.0), util.env_opt("batch_compound", 1.001), )