Skip to content

Commit

Permalink
Update blocks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyes319 authored Oct 1, 2024
1 parent fa86566 commit ee4f1d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mace/modules/blocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def _setup(self) -> None:
# Normalization
self.normalize = nn.BatchNorm(
self.irreps_out,
affine=False,
affine=True,
reduce="mean",
instance=True,
normalization="component",
Expand Down Expand Up @@ -650,7 +650,7 @@ def _setup(self) -> None:
# Normalization
self.normalize = nn.BatchNorm(
self.irreps_out,
affine=False,
affine=True,
reduce="mean",
instance=True,
normalization="component",
Expand Down

0 comments on commit ee4f1d9

Please sign in to comment.