Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiang Song committed Oct 10, 2023
1 parent b14f302 commit e7ac4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/graphstorm/inference/ep_infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def infer(self, loader, save_embed_path, save_prediction_path=None,
target_ntypes.add(etype[0])
target_ntypes.add(etype[2])
# Only init the nid_shuffler when there is a node_id_mapping_file.
nid_shuffler = NodeIDShuffler(g, node_id_mapping_file, target_ntypes) \
nid_shuffler = NodeIDShuffler(g, node_id_mapping_file, list(target_ntypes)) \
if node_id_mapping_file else None
shuffled_preds = {}
for etype, pred in preds.items():
Expand Down

0 comments on commit e7ac4a1

Please sign in to comment.