Method
__init__
(self, normalized_shape, eps=1e-5, device=None, dtype=None, **kwargs)
Source from the content-addressed store, hash-verified
| 438 | |
| 439 | class RMSNorm(torch.nn.Module): |
| 440 | def __init__(self, normalized_shape, eps=1e-5, device=None, dtype=None, **kwargs): |
| 441 | super().__init__() |
| 442 | self.weight = torch.nn.Parameter(torch.empty(normalized_shape, device=device, dtype=dtype)) |
| 443 | self.eps = eps |
| 444 | |
| 445 | def forward(self, hidden_states: torch.Tensor): |
| 446 | input_dtype = hidden_states.dtype |
Callers
nothing calls this directly
Tested by
no test coverage detected