Replies: 1 comment 1 reply
-
We currently do not support the notion of defining vertex weights in |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The current implementation of get_laplacian provides 3 types of normalization for the Laplacian (
None
,sym
,rw
).For the following discussion I refer to Bronstein et al. "Geometric deep learning: going beyond Euclidean data" .
The
None
andrw
normalization techniques can be derived from L = A⁻¹ (D - W).D is the degree matrix: D = np.diag(np.sum(W,axis=1)) - np.diagonal(W).
A is the matrix of vertex weights.
For obtaining the unnormalized Laplacian (
None
) we set A = Identity.To get
rw
we set A = D.Can we have a more general interface where we specify the matrix A?
Beta Was this translation helpful? Give feedback.
All reactions