deepwalk
deepwalk copied to clipboard
DeepWalk - Deep Learning for Graphs
direct use `from skipgram import Skipgram` can cause errors; fix it to use absolute import.
gensim version downgraded to 0.10.1 as 0.10.2 does not install via easy_install due to this bug: https://groups.google.com/forum/#!topic/gensim/NSOXuP4IE9Q
Not sure, if I should do a PR for that, but after it deepwalk can be run from scratch.
See line 126 of graph.py: ``` python def number_of_nodes(self): "Returns the number of nodes in the graph" return order() ``` should be ``` python def number_of_nodes(self): "Returns the number of...
fix to psutil modified API
Hi Bryan, Thanks for DeepWalk. I was pleased to see a real useable implementation released with the paper. I wanted to test DeepWalk a bit but I typically gzip my...