Skip to content

Commit

Permalink
update track label
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusOrsoe committed Apr 30, 2024
1 parent 9464f7a commit f513072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphnet/training/labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ def __init__(
def __call__(self, graph: Data) -> torch.tensor:
"""Compute label for `graph`."""
label = (graph[self._pid_key] == 14) & (graph[self._int_key] == 1)
return torch.tensor(label, dtype=torch.int64)
return label # torch.tensor(label, dtype=torch.int64)

0 comments on commit f513072

Please sign in to comment.