GMatch4py icon indicating copy to clipboard operation
GMatch4py copied to clipboard

A graph matching library for Python

Results 14 GMatch4py issues
Sort by recently updated
recently updated
newest added

Changed the variables to be compatible with the latest numpy

The docs mention that the library supports to incorporate node attributes when computing the distance. Without diving deeply into the code, how is this implemented, that is, how are two...

Thanks for a great library. I'd like to calculate GED using node properties aka attributes. Like another issue, this doesn't seem to work in practice: https://github.com/Jacobe2169/GMatch4py/issues/26 A starting point might...

Hi! incredible promises in your Readme.md (speed through Cython, easy API, etc.) But I found the library a bit unfinished, so here are some (hopefully) constructive feedback: 1) Import error....

Hi, I have a question about the maximum graph edit distance between two graphs. If Graph A has M nodes, B has N nodes, what is the maximum graph edit...

Hi, I am very new to python and Graphs, but I need these similarity measures in a project. so my question could be a little retarded, sorry. I tried to...

Hi. I have a question about the substitution cost. When we define `ged=gm.GraphEditDistance(1,1,1,1)`, I think that the parameters are equal to `node_del,node_ins,edge_del,edge_ins`. Is there a way to input user-defined substitution...

Hello, I'm trying to use this library for the first time. In particular, I'm trying to embed my graph using Graph2Vec approach. As there's no much documentation, I'm basically testing...

Hi, I noticed that if I don't begin with the examples given in your document, GMatch4py fails and gives: _ > --------------------------------------------------------------------------- > TypeError Traceback (most recent call last) >...

Hi, Thank you for GMatch4py which seems to works in my computer. My question is the following: in my graph, there 3 attributes, 2 on nodes and one a edges....