-
Notifications
You must be signed in to change notification settings - Fork 18
Line Lifting (Graph to Simplicial)
This lifting constructs a simplicial complex called the Line simplicial complex. This is a generalization of the so-called Line graph. In vanilla line graph, nodes are edges from the original graph and two nodes are connected with an edge if corresponding edges are adjacent in the original graph.
The line simplicial complex is a clique complex of the line graph. That is, if several edges share a node in the original graph, the corresponding vertices in the line complex are going to be connected with a simplex.
So, the line lifting performs the following:
- For a graph
$G$ we create its line graph$L(G)$ . The line (or dual) graph is a graph created from the initial one by considering the edges in$G$ as the vertices in$L(G)$ and the edges in$L(G)$ correspond to the vertices in$G$ . - During this procedure, we obtain a graph. It is easy to see that such graph contains cliques for basically each node in initial graph
$G$ . That is, if$v\in G$ has a degree$d$ then there's a clique on$d$ vertices in$L(G)$ . - Therefore let's consider a clique complex
$X(L(G))$ of$L(G)$ creating$(d-1)$ -simplices for each clique on$d$ vertices, that is, for each node in$G$ of degree$d$ .
When creating a line graph, we need to transfer the features from
From https://github.com/pyt-team/challenge-icml-2024/pull/9
- Defining GCCNs
- Defining backbone models
- Reproducing experiments
-
Graph to Simplicial Complex
-
Graph to Cell Complex
-
Graph to Hypergraph
-
Graph to Combinatorial
-
Pointcloud to Graph
-
Pointcloud to Simplicial
-
Pointcloud to Hypergraph
-
Hypergraph to Simplicial
-
Hypergraph to Combinatorial