(self, x: torch.Tensor, index: torch.Tensor | int | None = None, **kwargs: Any)
| 161 | """ |
| 162 | |
| 163 | def __call__(self, x: torch.Tensor, index: torch.Tensor | int | None = None, **kwargs: Any) -> torch.Tensor: |
| 164 | with replace_modules_temp(self.model, "relu", _GradReLU(), strict_match=False): |
| 165 | return super().__call__(x, index, **kwargs) |
| 166 | |
| 167 | |
| 168 | class GuidedBackpropSmoothGrad(SmoothGrad): |
nothing calls this directly
no test coverage detected