cnn_graph icon indicating copy to clipboard operation
cnn_graph copied to clipboard

Minor issue in "lib/utils.py".

Open u42dani opened this issue 4 years ago • 1 comments

I noticed line 139 in "lib/utils.py" should be modified from model = gensim.models.Word2Vec(Sentences(self.documents), size) to model = gensim.models.Word2Vec(sentences=Sentences(self.documents), size=size) I guess the parameter list of the Word2Vec constructor changed...

u42dani avatar Mar 26 '20 14:03 u42dani

Thanks! Does that work with gensim==2.1.0 (the version used during the development of this code)?

mdeff avatar Jul 20 '20 16:07 mdeff