-
Notifications
You must be signed in to change notification settings - Fork 13
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
About dataset #9
Comments
Hi @Syzseisus . |
Thank you for your quick response. I've already reviewed the provided resources. ALTERNATIVELY, for FB15k, I would appreciate it if you could confirm whether the order of nodes in the pickle file provided in Google Drive is the same as in the
Thank you for your assistance. Sincerely, |
Hi,
The
model = Node2Vec(data.edge_index, embedding_dim=64, walk_length=20,
context_size=10, walks_per_node=10, num_negative_samples=1,
p=1, q=1, sparse=True).cuda()
loader = model.loader(batch_size=128, shuffle=True, num_workers=4)
optimizer = torch.optim.SparseAdam(list(model.parameters()), lr=0.01)
model = Node2Vec(data.edge_index, embedding_dim=128, walk_length=20,
context_size=10, walks_per_node=10, num_negative_samples=1,
p=1, q=1, sparse=True).cuda()
Sincerely, |
Hi. First of all, I really appreciate to your wonderful work and code.
I open this issue to ask question:
Sincerely,
Wooseong Cho.
The text was updated successfully, but these errors were encountered: