-
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
Path lifting (Graph to Hypergraph) #52
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 @PierrickLeroy! 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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not directly part of the submission but it fixes what I believe to be a bug in a plotting function. This issue was created by another participant of the challenge.
Motivation
We propose a new lifting based on paths stemming from or between nodes. This lifting might be interesting for studying pairwise conversion mecanisms that defines membership to a community, a group or more generally a coherent set. An example could be steps in a process where the hyperedge represents the final product.
Method$(u, v, n) \in V\times V\times\mathbb N^{*}$ where $V$ is the set of vertices and $n$ is the length of the paths between nodes $u$ and $v$ . The lifting is then a family of such tuples $(u_i, v_i, n_i)$ .
Our method starts by defining source nodes. These nodes will be the origin of paths. Each source node can have an associated target node and must have an associated length. The hyperedges are defined to be all paths of the specified length starting from the source nodes. When a target node is also specified, only the paths ending at the target are kept. Examples are provided in the tutorial notebook.
Formally the lifting can be parametrized by a set of tuples of the form:
Parameters