From e70a00fa76f50e6c49ece17b20d7c5246609ed35 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 29 Sep 2020 16:47:54 +0200 Subject: [PATCH] Remove unnecessary warning from train --- spacy/cli/train.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/spacy/cli/train.py b/spacy/cli/train.py index 79c3d893c..7bbfe9315 100644 --- a/spacy/cli/train.py +++ b/spacy/cli/train.py @@ -74,12 +74,6 @@ def init_pipeline( else: msg.good(f"Loaded initialized pipeline from {init_path}") return nlp - msg.warn( - "Not saving initialized model: no output directory specified. " - "To speed up training, spaCy can save the initialized nlp object with " - "the vocabulary, vectors and label scheme. To take advantage of this, " - "provide an output directory." - ) return init_nlp(config, **init_kwargs)