cszhangzhen / H2MN

H2MN: Graph Similarity Learning with Hierarchical Hypergraph Matching Networks (KDD-2021)
55 stars 4 forks source link

Subgraph Matching Layer #9

Closed ArkadiyD closed 1 year ago

ArkadiyD commented 1 year ago

I'm sorry if I'm missing something obvious, but in the code, I can't find the implementation of the Subgraph Matching Layer (with the cosine similarity between hyperedge representations) as described in the paper, Section 3.6. I'm curious about this part of the H2MN architecture, so, could you please point to the corresponding section in the code? Thanks!

cszhangzhen commented 1 year ago

Hi,

The subgraph matching layer is formulated as a cross-graph propagation at here.

Thanks for your interest.

ArkadiyD commented 1 year ago

Thanks for your reply!