Skip to content
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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

martin-carrasco
Copy link

@martin-carrasco martin-carrasco commented Jul 9, 2024

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


Copy link

Check out this pull request on  ReviewNB

See visual diffs & provide feedback on Jupyter Notebooks.


Powered by ReviewNB

@gbg141
Copy link
Member

gbg141 commented Jul 9, 2024

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:

  • your first and last name (as well as any other team members)
  • the title of the method you implemented
  • the input domain of the method you implemented
  • the output domain of the method you implemented
  • your pull request number (Neighbourhood Complex Lifting (Graph to Simplicial) #41)

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.

@martin-carrasco martin-carrasco changed the title Neighbourhood Complex (Graph to Simplicial) Neighbourhood Complex Lifting (Graph to Simplicial) Jul 9, 2024
@gbg141 gbg141 added award-category-1 Lifting to Simplicial or Cell Domain award-category-4 Connectivity-based Lifting labels Jul 9, 2024
@gbg141 gbg141 added Winner Awarded submission and removed challenge-icml-2024 labels Oct 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
award-category-1 Lifting to Simplicial or Cell Domain award-category-4 Connectivity-based Lifting Winner Awarded submission
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants