Skip to content

Commit

Permalink
removed scalar activation
Browse files Browse the repository at this point in the history
  • Loading branch information
mitkotak committed Nov 24, 2024
1 parent 9172669 commit 2abe2c5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tetris_jax_baseline.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ def update_edge_fn(edge_features, sender_features, receiver_features, globals):
def update_node_fn(node_features, sender_features, receiver_features, globals):
node_feats = receiver_features / self.denominator
node_feats = e3nn.flax.Linear(target_irreps, name="linear_pre")(node_feats)
node_feats = e3nn.scalar_activation(node_feats)
node_feats = e3nn.flax.Linear(target_irreps, name="linear_post")(node_feats)
shortcut = e3nn.flax.Linear(
node_feats.irreps, name="shortcut", force_irreps_out=True
)(node_features)
Expand Down

0 comments on commit 2abe2c5

Please sign in to comment.