Skip to content

Commit

Permalink
Default on for element-wise affine parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
jondeaton authored and patrick-kidger committed Dec 28, 2023
1 parent 58d9469 commit b51faf9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions equinox/nn/_normalisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ class RMSNorm(Module):
term.
??? cite
[Root Mean Square Layer Normalization](https://browse.arxiv.org/abs/1910.07467)
```bibtex
Expand All @@ -308,8 +309,8 @@ def __init__(
self,
shape: Union[int, Sequence[int]],
eps: float = 1e-5,
use_weight: bool = False,
use_bias: bool = False,
use_weight: bool = True,
use_bias: bool = True,
**kwargs,
):
"""**Arguments:**
Expand Down

0 comments on commit b51faf9

Please sign in to comment.