Skip to content

Commit

Permalink
Fix addition assignment operator issue in GINConv (see https://discus…
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed May 16, 2024
1 parent f75e9aa commit ef16038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molexpress/layers/gin_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def call(self, inputs: types.MolecularGraph) -> types.MolecularGraph:
node_state_updated = self.activation(node_state_updated)

if self.skip_connection:
node_state_updated += node_state
node_state_updated = node_state_updated + node_state

if self.dropout_rate:
node_state_updated = self.dropout(node_state_updated)
Expand Down

0 comments on commit ef16038

Please sign in to comment.