I noticed that in the dataset directory, there are three different Laplacian embedding files:
laplacian_2_5.pt
laplacian_2_10.pt
laplacian_2_20.pt
Could you explain:
What do these numbers represent in the file names? (e.g., what does 2_10 mean?)
I noticed that Laplacian Embedding can be implemented using PyTorch Geometric like this:
from torch_geometric.transforms import AddLaplacianEigenvectorPE
# k: number of eigenvectors to use
transform = AddLaplacianEigenvectorPE(k=8)
data = transform(data)
Could you share:
Which k values did you use in LLaGA?
Did you use PyTorch Geometric or a different implementation?
Relationship between k and Graph Size (number of nodes)
How did you determine the value k in relation to the number of nodes in your graphs?
Did you use same k for every graphs or different values with respect to the number of nodes?
Which file is used as the default in your experiments, and what was the reasoning behind that choice?
Thank you for your great work and open source!
I noticed that in the dataset directory, there are three different Laplacian embedding files:
laplacian_2_5.pt
laplacian_2_10.pt
laplacian_2_20.pt
Could you explain:
2_10
mean?)I noticed that Laplacian Embedding can be implemented using PyTorch Geometric like this:
PyTorch Geometric
or a different implementation?k
and Graph Size (number of nodes) How did you determine the valuek
in relation to the number of nodes in your graphs? Did you use samek
for every graphs or different values with respect to the number of nodes?Sincerely, Syzseisus