Skip to content
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

Where can I find the final version of the code and the final version of the paper? #5

Open
coraler opened this issue Mar 27, 2021 · 1 comment

Comments

@coraler
Copy link

coraler commented Mar 27, 2021

As discussed in these issues, these codes and experimental results are not adopted in the final version of paper? So could you tell me .Thank you.

@coraler coraler changed the title Where can I find the final version of the code? Where can I find the final version of the code and the final version of the paper? Mar 27, 2021
@allenhaozhu
Copy link
Owner

As discussed in these issues, these codes and experimental results are not adopted in the final version of paper? So could you tell me .Thank you.

Sorry this code was written when I submitted supplement materials. Thus the bug only affects parameter analysis in Table 8 and 9 basically.
you can replace sgc_precompute function in utils.py as the following code:
def sgc_precompute(features, adj, degree, alpha): t = perf_counter() feature_ori = features feature_set = torch.zeros_like(features) for i in range(degree): features = torch.spmm(adj, features) feature_set += (1-alpha)features + alphafeature_ori #feature_set/=degree+1 feature_set /= degree precompute_time = perf_counter()-t return feature_set, precompute_time
Because new hyper-parameters need to update, so I need few days (I hope tomorrow to update Github).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants