mirror of https://github.com/explosion/spaCy.git
Remove print statement
This commit is contained in:
parent
c390f2d745
commit
c5799ecc7b
|
@ -334,9 +334,7 @@ cdef class Vocab:
|
||||||
else:
|
else:
|
||||||
width = self.vectors.shape[1]
|
width = self.vectors.shape[1]
|
||||||
self.vectors.resize((new_rows, width))
|
self.vectors.resize((new_rows, width))
|
||||||
print(self.vectors.shape)
|
|
||||||
self.vectors.add(orth, vector=vector)
|
self.vectors.add(orth, vector=vector)
|
||||||
print("Adding", orth, self.vectors.is_full)
|
|
||||||
self.vectors.add(orth, vector=vector)
|
self.vectors.add(orth, vector=vector)
|
||||||
|
|
||||||
def has_vector(self, orth):
|
def has_vector(self, orth):
|
||||||
|
|
Loading…
Reference in New Issue