graph2vec
graph2vec copied to clipboard
Theano implementation of GloVe for graphs
https://github.com/benedekrozemberczki/karateclub Karate Club is an unsupervised machine learning extension library for NetworkX. Karate Club consists of state-of-the-art methods to do unsupervised learning on graph structured data. To put it simply...
I failed to use graph2vec with python 3.x A patch is provided: sed -i 's/cPickle/pickle/g;s/from node_vectors import/from graph2vec.node_vectors import/g' graph2vec-0.0.2/graph2vec/*.py
I installed graph2vec successfully but I cannot use it >>> import graph2vec.trainer >>> graph2vec = Graph2Vec(vector_dimensions=128) Traceback (most recent call last): File "", line 1, in NameError: name 'Graph2Vec' is...
Hey, I'm trying to compare separate graph vectors to each other -- do you have to train each one independently? Would that result in the same vector space representation? How...
Hi, Thanks a lot for the implementation of graph to vector method. I am vaguely familiar with several methods, e.g. Laplacian Eigenmaps and similar methods. The implemented method in this...
See the traceback below. This doesn't work on Ubuntu 14.04 (AWS GPU instance) running Python 2.7.6. ## `In [4]: graph2vec.parse_graph('test.txt', extend_paths=2) IOError Traceback (most recent call last) in () ---->...