Skip to content

Commit

Permalink
fix: ivy BatchNorm2D _extra_repr
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong committed May 29, 2024
1 parent 586299e commit 827459d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ivy/stateful/norms.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ def _forward(self, inputs):

def _extra_repr(self) -> str:
return (
f"num_features={self._num_features}, affine={self._affine}, "
f"data_format={self._data_format}, epsilon={self._epsilon} "
f"num_features={self.num_features}, affine={self._affine}, "
f"data_format={self.data_format}, epsilon={self._epsilon} "
f"momentum={self._momentum}, "
f"track_running_stats={self._track_running_stats}"
)

0 comments on commit 827459d

Please sign in to comment.