-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Embedds should add X once or twice? #2
Comments
In our paper, to demonstrate an APPNP similar form, we add X for every propagation. However, it is easy to move X outside the sum function and then add X once in the implementation. |
Thanks for your comments because they may help me improve the camera-ready version. |
Hi, thanks for the code! Do I misunderstand the code? Have you raised the power to the Line 98 in 115d483
|
looks like you consider i=0 but there is no item for this because we move this item out of the sum. |
Maybe I miss some information or I made some mistakes here. Are we supposed to do
|
I got the point............Sorry for the problem of this code. Thank you very much for this issue. |
Thanks! |
In your paper, Eq. 13 indicates: embedds = aX + (1-a)(TX+T^{2}X+....); i.e., you add X only once?
But in the code function "sgc_precompute", embedds = aX +(1-a)(X+TX+T^{2}X+....); i.e., you add X twice?
Which one is correct? or do I misunderstanding?
The text was updated successfully, but these errors were encountered: