Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Oct 31, 2017
1 parent c390f2d commit c5799ec
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions spacy/vocab.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit c5799ec

Please sign in to comment.