From c5799ecc7be46be11d4ed5cdba51d7b48d3cbf5a Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 31 Oct 2017 21:12:33 +0100 Subject: [PATCH] Remove print statement --- spacy/vocab.pyx | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacy/vocab.pyx b/spacy/vocab.pyx index ffc81ad0b..14b62a808 100644 --- a/spacy/vocab.pyx +++ b/spacy/vocab.pyx @@ -334,9 +334,7 @@ cdef class Vocab: else: width = self.vectors.shape[1] self.vectors.resize((new_rows, width)) - print(self.vectors.shape) self.vectors.add(orth, vector=vector) - print("Adding", orth, self.vectors.is_full) self.vectors.add(orth, vector=vector) def has_vector(self, orth):