(self, x: torch.Tensor, index: torch.Tensor | int | None = None, **kwargs: Any)
| 98 | return grad |
| 99 | |
| 100 | def __call__(self, x: torch.Tensor, index: torch.Tensor | int | None = None, **kwargs: Any) -> torch.Tensor: |
| 101 | return self.get_grad(x, index, **kwargs) |
| 102 | |
| 103 | |
| 104 | class SmoothGrad(VanillaGrad): |