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):