Remove print statement

This commit is contained in:
Matthew Honnibal 2017-10-20 14:19:29 +02:00
parent cfae54c507
commit 33229b1c9e
1 changed files with 0 additions and 1 deletions

View File

@ -63,7 +63,6 @@ cdef class Vocab:
for string in strings: for string in strings:
_ = self[string] _ = self[string]
self.lex_attr_getters = lex_attr_getters self.lex_attr_getters = lex_attr_getters
print("Create morphology", list(self.strings), tag_map)
self.morphology = Morphology(self.strings, tag_map, lemmatizer) self.morphology = Morphology(self.strings, tag_map, lemmatizer)
self.vectors = Vectors(self.strings, width=0) self.vectors = Vectors(self.strings, width=0)