mirror of https://github.com/explosion/spaCy.git
Remove print statement
This commit is contained in:
parent
cfae54c507
commit
33229b1c9e
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue