Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
riship committed Jan 10, 2025
1 parent 8c9a041 commit f0d3710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_geometric/utils/rag/backend_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class to use. Defaults to LocalFeatureStore.

indexer = LargeGraphIndexer.from_triplets(triplets,
pre_transform=pre_transform)
print("indexer._nodes[:100]=", [(indexer._nodes[key], key) for key in list(indexer._nodes.keys())[:100]])
print("indexer._nodes[:10]=", [(indexer._nodes[key], key) for key in list(indexer._nodes.keys())[:10]])
node_feats = node_model(indexer.get_unique_node_features(),
**node_method_kwargs)
indexer.add_node_feature('x', node_feats)
Expand Down

0 comments on commit f0d3710

Please sign in to comment.