Forward pass through the model.
(self, x: Tensor)
| 49 | self._reset_parameters_datapt() |
| 50 | |
| 51 | def forward(self, x: Tensor) -> torch.Tensor: |
| 52 | """Forward pass through the model.""" |
| 53 | x = self.preprocess(x) |
| 54 | return self.forward_without_preprocessing(x) |
| 55 | |
| 56 | def forward_without_preprocessing(self, x: Tensor): |
| 57 | """Forward pass through the model. |
nothing calls this directly
no test coverage detected