(self, x: torch.Tensor, index: torch.Tensor | int | None = None, **kwargs: Any)
| 171 | """ |
| 172 | |
| 173 | def __call__(self, x: torch.Tensor, index: torch.Tensor | int | None = None, **kwargs: Any) -> torch.Tensor: |
| 174 | with replace_modules_temp(self.model, "relu", _GradReLU(), strict_match=False): |
| 175 | return super().__call__(x, index, **kwargs) |
nothing calls this directly
no test coverage detected