-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Neighbourhood Complex Lifting (Graph to Simplicial) #41
base: main
Are you sure you want to change the base?
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Hello @martin-carrasco! Thank you for your submission. As we near the end of the challenge, I am collecting participant info for the purpose of selecting and announcing winners. Please email me (or have one member of your team email me) at guillermo_bernardez@ucsb.edu so I can share access to the voting form. In your email, please include:
Before July 12, make sure that your submission respects all Submission Requirements laid out on the challenge page. Any submission that fails to meet this criteria will be automatically disqualified. |
Given that connections based on neighbourhoods of nodes are already present in GNN literature, the notion of a neighbourhood complex becomes of interest. Following from previous work, defining a neighbourhoods as the nodes with which a node shares a neighbour. Formally,$N(G)$ is defined in terms of a simplex. Where a simplex $\sigma_v$ is the neighbourhood simplex of node $v \in V(G)$ , composed of all $u \in V(G)$ given that $\exists w: (v, w) \in E(G) \wedge (u, w) \in E(G)$ . [1].
This structure has been proven to have certain properties that could be interesting in certain domains such as$k$ -colorability. As stablished by Lovasz, if $N(G)$ is $(k+2)$ -connected, then, $G$ is not $k$ -colorable. Additionally, he shows a relationship between the homotopy invariance of $N(G)$ and the $k$ -colorability of $G$ .
Neighbourhood complexes can be used to calculate other more interesting structures in induced by graphs, such as the dominating set of$G$ which is the Alexander dual of $N(\bar{G})$ (neighbourhood complex of the complement of $G$ ). This is useful for computing homology groups of dominance complexes without having to actually calculated the dominance set [2]. In future implementations, adding a basic transformation pertaining to the Alexander Dual would help in having a Dominating Complex, namely, a simplicial complex composed of simplices where the complements of the nodes composing the simplifies are dominating in $G$ .
Tags:
Existing lift from literature | connectivity-based | deterministic | Feature lifting
[1] L, Lovász. (1967). Kneser's conjecture, chromatic number, and homotopy
[2] T, Matsushita. S, Wakatsuki. (2023). Dominance complexes, neighborhood complexes and combinatorial Alexander duals