(self)
| 604 | layer._init_weights(reset_params=reset_params) |
| 605 | |
| 606 | def reset_parameters(self): |
| 607 | self._init_weights(reset_params=True) |
| 608 | |
| 609 | def forward(self, hidden_states: torch.Tensor, attention_mask: torch.Tensor) -> torch.Tensor: |
| 610 | raise NotImplementedError("This is a base class and should not be used directly.") |
nothing calls this directly
no test coverage detected