benedekrozemberczki/SimGNN

Error in the example from readme

merascu opened this issue · 1 comments

In the example in the repo:
{"graph_1": [[0, 1], [1, 2], [2, 3], [3, 4]],
"graph_2": [[0, 1], [1, 2], [1, 3], [3, 4], [2, 4]],
"labels_1": [2, 2, 2, 2],
"labels_2": [2, 3, 2, 2, 2],
"ged": 1}
I think there is a label missing in labels_1. Also the ged for the example is 2 if we consider the missing label is 2.
Am I missing smth?

If this example missing a label in the labels_1. As you think the missing label is 2. I think the ged is "3". Because you need to delete edge(1,3 and 2,4) and chage a label for a node.
Am I right?