Skip to content

Commit

Permalink
Merge pull request #13 from dagardner-nv/david-fsi_dgl-patch10
Browse files Browse the repository at this point in the history
Fix embedding_size
  • Loading branch information
tzemicheal authored Aug 29, 2023
2 parents 020d2b5 + 843ed38 commit 062481e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/gnn_fraud_detection_pipeline/stages/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def __init__(self,

# input size
in_sizes = {
rel: in_size if src_type == self._target else self._embedding_size
rel: in_size if src_type == self._target else embedding_size
for src_type,
rel,
_ in input_graph.canonical_etypes
Expand Down

0 comments on commit 062481e

Please sign in to comment.