From bc4afa988164bb1c50a3f1626c397fdb43de6966 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 28 Mar 2018 17:48:37 +0200 Subject: [PATCH] Remove print statement --- spacy/pipeline.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/pipeline.pyx b/spacy/pipeline.pyx index 20f6ac3d5..83535924f 100644 --- a/spacy/pipeline.pyx +++ b/spacy/pipeline.pyx @@ -533,7 +533,6 @@ class Tagger(Pipe): "for loading pre-trained vectors, and the class has been " "passed the old name (pretrained_dims) but not the new name " "(pretrained_vectors)") - print(cfg) return build_tagger_model(n_tags, **cfg) def add_label(self, label, values=None):