Hypergraph Neural Networks Paper

HGNN Proposal

$

hypergraph-definition

Hypergraph

A hypergraph is defined as:

  • G=(V,E,W)
  • vertex set V
  • hyperedge set E
  • weight matrix W, each hyperedge is assigned with a weight
  • incidence matrix H defines G, dimensions |V|×|E|
    h(v,e)={1,if ve0,if ve
  • weight function for vertex v is d(v)=eEw(e)h(v,e)
  • weight function for edge e is d(e)=vVh(v,e)
  • De and Dv diagonal matrices of edge and vertex degrees

Node Classification on Hypergraphs