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

Update metapath2vec.py #9651

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

yangfa-zhang
Copy link

fix bug:
col = col[rand] if col.numel() > 0 else rand
IndexError: index 2282976 is out of bounds for dimension 0 with size 2282976

fix bug:
 col = col[rand] if col.numel() > 0 else rand
IndexError: index 2282976 is out of bounds for dimension 0 with size 2282976
@@ -257,6 +272,10 @@ def sample(rowptr: Tensor, col: Tensor, rowcount: Tensor, subset: Tensor,
rand = rand.to(torch.long) + rowptr[subset].view(-1, 1)
rand = rand.clamp(max=col.numel() - 1) # If last node is isolated.

col = col[rand] if col.numel() > 0 else rand
if col.numel() > 0:
rand = torch.min(rand, torch.tensor(col.numel() - 1))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We already clamp the value in line 273. What does this do here?

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

Successfully merging this pull request may close these issues.

2 participants