SimGNN icon indicating copy to clipboard operation
SimGNN copied to clipboard

Does this not work for any shape of graph?

Open Erlix322 opened this issue 3 years ago • 0 comments

Hey,

I tried testing it with only one training data set:

{
"labels_1": ["11", "11", "9"], 
"labels_2": ["8", "11", "5"], 
"graph_2": [[0,1],[1,2]], 
"ged": 11, 
"graph_1": [[0,1],[1,3]]
}

Which results in the following error:

ValueError: Dimensions must be equal, but are 8 and 16 for '{{node functional_1/graph_conv/MatMul_1}} = MatMul[T=DT_FLOAT, transpose_a=false, transpose_b=false](functional_1/graph_conv/Reshape, functional_1/graph_conv/Reshape_1)' with input shapes: [3,8], [16,64].

So how does this work. I tried to wrap my head around this but it is not clear to me what graph pairs work and which doesn't

Erlix322 avatar Nov 28 '20 12:11 Erlix322