(self, x: Tensor)
| 153 | nn.init.constant_(module.weight, 1) |
| 154 | |
| 155 | def forward(self, x: Tensor) -> Tensor: |
| 156 | return self._forward_impl(x) |
| 157 | |
| 158 | # Support torch.script function |
| 159 | def _forward_impl(self, x: Tensor) -> Tensor: |
nothing calls this directly
no test coverage detected