mdeff / cnn_graph

Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering
https://arxiv.org/abs/1606.09375
MIT License
1.33k stars 390 forks source link

Minor issue in "lib/utils.py". #52

Open u42dani opened 4 years ago

u42dani commented 4 years ago

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...

mdeff commented 4 years ago

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