-
Looks like `additional_forward_args` are passed to `target` parameter
https://github.com/pytorch/captum/blob/d65be282fa1a30ab7aa7645ca4865797266bd603/captum/insights/api.py#L227
https://github.c…
-
Using Captum v0.1, so I'm not sure whether this happens with current master.
Something I have noticed when trying out DeepLIFT with CNNs is that reusing MaxPool2d layers instead of explicitly defin…
-
Hi folks,
Is there a proper .bib format available for Captum for the purposes of citation in research papers?
Thanks!
-
Hi,
I was trying to use `captum.attr._core.layer_activation.LayerActivation` to get the activation of the first convolutional layer in a simple model. Here is my code:
```Python
torch.manual_seed(2…
-
The hyperlink "Getting Started with Captum" on [this](https://captum.ai/tutorials/) page is pointing to pytorch.org rather than the correct tutorial page.
-
Hi all,
Thank you so much for the invitation to captum. Very grateful to all of you for putting this together! I had a quick question regarding the documentation. Currently, in the arguments descri…
-
For the toy example with cuda
```python
model = ToyModel()
model = model.cuda()
model.eval()
input = torch.rand(2, 3).cuda()
baseline = torch.zeros(2, 3).cuda()
ig = IntegratedGradients(m…
-
in readme,
```
Next we will use IntegratedGradients algorithms to assign attribution scores to each input feature with respect to the second target output.
```
and then target=0, is set, should it…
-
Hello,
Kudos for the great work. I believe this has great potential.
I wonder what is in your roadmap, especially regarding perturbation-based attribution methods (Occlusion, LIME/KernelSHAP, Shaple…
-
I follow READER.md to install TensorBoard, That's ok,
```
bazel build tensorboard:tensorboard
./bazel-bin/tensorboard/tensorboard --logdir path/to/logs
```
But I cannot find TensorBoard in pytho…