Skip to content

Commit

Permalink
comment out edge_weight
Browse files Browse the repository at this point in the history
  • Loading branch information
akensert committed Jun 21, 2024
1 parent b1363e5 commit 6cede57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molexpress/layers/gatv2_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def call(self, inputs: types.MolecularGraph) -> types.MolecularGraph:
edge_src = keras.ops.cast(x["edge_src"], "int32")
edge_dst = keras.ops.cast(x["edge_dst"], "int32")
edge_state = x.pop("edge_state", None)
edge_weight = x.get("edge_weight")
# edge_weight = x.get("edge_weight")

if edge_state is None:
attention_feature = keras.ops.concatenate([
Expand Down

0 comments on commit 6cede57

Please sign in to comment.