Replies: 1 comment 6 replies
-
The paper sadly doesn't give that much detail about how it actually constructs its hypergraph. Did you try to look at its source code? For constructing |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I was recently reading the paper "Hypergraph Convolution and Hypergraph Attention" and I would like to thank PyG for providing the source code of this model. I want to try to use Hypergraph Attention to do experiments on Cora to reproduce the correct rate of 82.61% in the original paper.
I found that I had to pass in a variable called hyperedge_attr in the forward function. I don't know where this variable comes from, I tried using the mean of the nodes connected by the hyperedge as the feature of the hyperedge, but this works poorly, does anyone know how to do this?
Below is the source code of my model. Thanks again!
Beta Was this translation helpful? Give feedback.
All reactions