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

so many bugs when gcn=False ? #11

Open
xuChenSJTU opened this issue Jun 4, 2019 · 3 comments
Open

so many bugs when gcn=False ? #11

xuChenSJTU opened this issue Jun 4, 2019 · 3 comments

Comments

@xuChenSJTU
Copy link

image
image

It seems that the aggregator does not work and the settings here is also strange
image

@xuChenSJTU
Copy link
Author

And these bugs only appear when in GPU training mode.

@herbertguoqi
Copy link

I have encountered the same problem, how did you solve it?

@silent-code
Copy link

These settings work for me:

agg1 = MeanAggregator(features, cuda=False)
enc1 = Encoder(features, 1433, 128, adj_lists, agg1, gcn=False, cuda=False)
agg2 = MeanAggregator(lambda nodes : enc1(nodes).t(), cuda=False)
enc2 = Encoder(lambda nodes : enc1(nodes).t(), enc1.embed_dim, 128, adj_lists, agg2,
base_model=enc1, gcn=False, cuda=False)

My results:
Test score: 0.856551413074322
Test accuracy: 0.8379999995231628

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

3 participants