Yiminghh / HiGCN

15 stars 3 forks source link

[Confusing]What's the point of finding a neighbor node larger than the current one #1

Closed Opium1715 closed 4 months ago

Opium1715 commented 4 months ago

image Firstly, Excellent work!!! I couldn't understand what the purpose was, and what was the basis for one node being larger than another? Thanks!

Yiminghh commented 4 months ago

Thank you for your interest in our work! We only consider neighbors with a larger ID to ensure that we do not count any simplex more than once.

To illustrate this with an example, let's consider the existence of a 2-simplex [v0, v1, v2]. When searching for 2-simplices, this particular simplex would only be identified based on the edge [v0, v1]. While it will not be found based on the edge [v0, v2] or [v1, v2].

Opium1715 commented 4 months ago

Thank you for your interest in our work! We only consider neighbors with a larger ID to ensure that we do not count any simplex more than once.

To illustrate this with an example, let's consider the existence of a 2-simplex [v0, v1, v2]. When searching for 2-simplices, this particular simplex would only be identified based on the edge [v0, v1]. While it will not be found based on the edge [v0, v2] or [v1, v2]. Thank you for your answer, thank you very much.