GraKeL icon indicating copy to clipboard operation
GraKeL copied to clipboard

SubgraphMatching can not use normalize=True

Open anonymous-author-here opened this issue 2 years ago • 1 comments

When I try to use SubgraphMatching(normalize=True), it gives me an error:

Code:

from grakel.kernels import SubgraphMatching

k = SubgraphMatching(normalize=True) print("fit") k.fit([({(1, 2), (2, 3), (2, 1), (3, 2)}, {1: 'N', 2: 'C', 3: 'O'}, {(1, 2): ('N', 'C'), (2, 1): ('C', 'N'), (2, 3): ('C', 'O'), (3, 2): ('O', 'C')})])

print("transform") print(k.transform([({(1, 2), (2, 3), (2, 1), (3, 2)}, {1: 'N', 2: 'C', 3: 'O'}, {(1, 2): ('N', 'C'), (2, 1): ('C', 'N'), (2, 3): ('C', 'O'), (3, 2): ('O', 'C')})]))

print(k.transform([({(1, 2), (2, 3), (3, 4), (3, 5), (5, 6), (2, 1), (3, 2), (4, 3), (5, 3), (6, 5)}, {1: 'O', 2: 'C', 3: 'N', 4: 'C', 5: 'C', 6: 'O'}, {(1, 2): ('O', 'C'), (2, 3): ('C', 'N'), (3, 4): ('N', 'C'), (3, 5): ('N', 'C'), (5, 6): ('C', 'O'), (2, 1): ('C', 'O'), (3, 2): ('N', 'C'), (4, 3): ('C', 'N'), (5, 3): ('C', 'N'), (6, 5): ('O', 'C')})]))

Error: Traceback (most recent call last): File "try.py", line 20, in (2, 3): ('C', 'O'), (3, 2): ('O', 'C')})])) File "/home/anaconda3/envs/peter/lib/python3.6/site-packages/grakel/kernels/kernel.py", line 165, in transform X_diag, Y_diag = self.diagonal() File "/home/anaconda3/envs/peter/lib/python3.6/site-packages/grakel/kernels/kernel.py", line 302, in diagonal return self._X_diag, Y_diag AttributeError: 'SubgraphMatching' object has no attribute '_X_diag'

Thank you!

anonymous-author-here avatar Nov 18 '21 17:11 anonymous-author-here

Hi @anonymous-author-here ,

I tried to reproduce the error, but I could not. Have a look here: https://colab.research.google.com/drive/16dLHV-4vksiid80ryMxDlRCjHlAwOXV3?usp=sharing

Which version of GraKeL have you installed?

giannisnik avatar Nov 18 '21 18:11 giannisnik