-
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
Coface Lifting (Simplicial to Combinatorial) #29
base: main
Are you sure you want to change the base?
Conversation
…rafted simplicial dataset
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 [email protected] 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. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #29 +/- ##
=======================================
Coverage ? 71.50%
=======================================
Files ? 18
Lines ? 600
Branches ? 0
=======================================
Hits ? 429
Misses ? 171
Partials ? 0 ☔ View full report in Codecov by Sentry. |
This technique lifts a Simplicial Complex to a Combinatorial Complex by taking the co-adjacencies of a simplex to be the components of the higher order ($3$ -cell) cell. Given a simplex $\sigma$ and its co-faces $\tau_1, \tau_2, \cdot \cdot \cdot , \tau_i$ . Then, using a purely combinatorial definition, $\delta = \sigma \cup \tau_1 \cup \cdot \cdot \cdot \cup \tau_i$ . We can see that it holds that this is a combinatorial complex $\mathcal{X}$ because of the two conditions that need to be fulfilled.
This technique is proposed in [1].
As additional contributions:
Dataset
and not aData
object.get_combinatorial_complex_connectivity
to generate connectivity matricesHMCModel
class that operates over combinatorial complexes.[1] Hajij, M., Zamzmi, G., Papamarkou, T., Miolane, N., Guzmán-Sáenz, A., Ramamurthy, K. N., ... & Schaub, M. T. (2022). Topological deep learning: Going beyond graph data. arXiv preprint arXiv:2206.00606.
Tags:
Existing lift from literature | connectivity-based | deterministic