-
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
Probabilistic Clique Lifting (Graph to Combinatorial) #62
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 @alvarolmartinez! 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. |
In this PR we introduce a (novel) probabilistic version of the clique lifting. This lifting is appropriate under the assumption that some edges have been randomly and uniformly erased from the graph.
The algorithm does not introduce extra edges to the complex, and the probabilistic part is only involved in adding higher-order cells.
The algorithm finds the cliques$C_{i,j}$ of size $i$ , and considers nodes which are highly connected to the clique. Given a probability parameter $p=$ $x$ as part of a clique $C_{i,j}$ if
probability
representing the erasure probability (assuming independence of erasures), it considers a nodeWhen$p=0$ , it recovers the clique lifting, see the notebook for a custom example for various values of $p$ .
In comparison with the clique lifting, the Probabilistic Clique Lifting produces fewer, larger maximal cliques (or cells) which overlap less with each other.
The lifting leverages the property of combinatorial complexes (as opposed to simplicial complexes, see [1]) that not all subcells of a cell must be in the complex.