We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that the aggregator does not work and the settings here is also strange
The text was updated successfully, but these errors were encountered:
And these bugs only appear when in GPU training mode.
Sorry, something went wrong.
I have encountered the same problem, how did you solve it?
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
No branches or pull requests
It seems that the aggregator does not work and the settings here is also strange
The text was updated successfully, but these errors were encountered: