Replies: 1 comment
-
I'll try to take a look when I have more time to revive the project... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here's the issue I'm having:
Based on Hodge laplacians (Table 3), I'm trying to find betti numbers per threshold and compare them to Gudhi/Ripser/..
I'm using random 2D point cloud data.
I am using Hodge laplacians Package to calculate Laplacians from data point and RipsComplex from gudhi wich mentioned in the hodge laplacian repository that I linked before.
and this part is ripser and gudhi part to calculate betti0 curve from persistent diagram:
they are compatible for Betti 0
as you can see here
Betti 0 form hodge laplacian and Gudhi Betti Curve
For Betti 1 here is code parts:
Hodge laplacian method:
Ripser/Gudhi Part:
Here are the results for Betti 1, but they are incompatible as you can see here
Betti 1 form hodge laplacian and Gudhi Betti Curve.
I discovered the problem is that the Hodge Laplacian method calculated all holes and the holes did not die as the filteration proceeds as we would expect with Vietoris Rips. Do you have any suggestions on what I might be missing here and how to fix this ? I want to make Hodge results like ripser ones.
Additionally, these are the papers in which I found the Hodge laplacian method.
main paper
nice review
related powerpoint
Beta Was this translation helpful? Give feedback.
All reactions