Hi, thank you for providing the code! I have one question regarding the node features, in the paper I got the impression that the node features are initialized with random walk, while in the code of train.py file, line 392 I can see that you also learned the node features:
initembedder = Wrap_Embedding(data.numnodes, args.input_vdim, scale_grad_by_freq=False, padding_idx=0, sparse=False)
I cannot find any mention of learning the node features in the paper, can you please provide some insights regarding this? Have you tried to make them unlearnable, how do the results change then?
I am wondering because the datasets are quite big, hence making the node embeddings learnable adds a lot of computational complexity.
Thank you once more for the code!!
Hi, thank you for providing the code! I have one question regarding the node features, in the paper I got the impression that the node features are initialized with random walk, while in the code of train.py file, line 392 I can see that you also learned the node features:
initembedder = Wrap_Embedding(data.numnodes, args.input_vdim, scale_grad_by_freq=False, padding_idx=0, sparse=False)I cannot find any mention of learning the node features in the paper, can you please provide some insights regarding this? Have you tried to make them unlearnable, how do the results change then?
I am wondering because the datasets are quite big, hence making the node embeddings learnable adds a lot of computational complexity.
Thank you once more for the code!!