Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 10, 2025
1 parent 518c5b5 commit 3632cec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion torch_geometric/data/large_graph_indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,8 @@ def to_data(self, node_feature_name: str,
"""
x = torch.Tensor(self.get_node_features(node_feature_name))
node_id = torch.LongTensor(range(len(x)))
print("self.get_edge_features(EDGE_INDEX)[:10]=",self.get_edge_features(EDGE_INDEX)[:10])
print("self.get_edge_features(EDGE_INDEX)[:10]=",
self.get_edge_features(EDGE_INDEX)[:10])
print("self.get_edge_features(EDGE_INDEX)[:10]=",
self.get_edge_features(EDGE_INDEX)[10])
edge_index = torch.t(
Expand Down

0 comments on commit 3632cec

Please sign in to comment.