Skip to main content

This repository implements the faithfulness metrics mentionned in the paper --Computing and evaluating saliency maps for image classification: a tutorial-- in Pytorch.

Project description

Faithfulness metrics for saliency maps

TODO: explain the role of each script

This repository implements the faithfulness metrics mentionned in the paper "Computing and evaluating saliency maps for image classification: a tutorial" in Pytorch. This can be used to compute the following metrics:

alt text

Single step metrics

This section covers the use of the Increase In Confidence (IIC), Average Drop (AD) and Average Drop in Deletion (ADD) metrics. First, generate the saliency map of the image however you want. The only constraint is that the map should be a tensor of size (Nx1xH'xW'):

saliency_map = gradcam.attribute(img,class_ind)

Then, compute the metric. In this example, we use the class IIC_AD of this library to compute both the AD and IIC metric, as they require similar computations:

iic_ad = IIC_AD()
metric_dict = iic_ad(model,data,explanations,class_to_explain)
mean_iic = metric_dict["iic"]
mean_ad = metric_dict["ad"]

The resulting dictionary has two entries ic and ad which correspond to the mean value of the two metrics.

The __call__() method for all the metrics requires the following arguments :

  • model: a torch.nn.Module that outputs a score tensor of shape (NxC), on which a softmax activation has been applied.
  • data: the input image tensor of shape (Nx3xHxW).
  • explanations: the saliency maps tensor of shape (Nx1xH'xW')
  • class_to_explain: The index of the class to explain for each input image. The shape shoud be (N).

The ADD class is used similarly:

add = ADD()
metric_dict = add(model,data,explanations,class_to_explain)
mean = metric_dict["add"]

This resulting dictionary has only one entry add which correspond to the mean value of the ADD metric.

Multi-step metrics

This section covers the use of the DAUC, IAUC, DC and IC metrics. These metrics work similarly but some argument have to be passed to the constructor:

deletion = Deletion(data_shape,explanation_shape,bound_max_step=True)

Where data_shape and explanation_shape are the shape of the image and saliency map tensor. A high resolution saliency map of size 56x56 would require approximately 3k inferences. To prevent too much computation, you can set the bound_max_step argument to True to limits the amount of computation that can be computed. More precisly, this argument forces to mask/reveal several pixels before computing a new inference if the resolution of the saliency map is superior to 14x14. The call method returns a dictionary with two entries: dauc (which correspond to the original Deletion metric by Petsiuk et al.) and dc (the variant proposed by Gomez et al.).

result_dic = deletion(model,data,explanations,class_to_explain)
dauc = result_dic["dauc"]
dc = result_dic["dc"]

The Insertion metric is computed similarly:

insertion = Insertion(data_shape,explanation_shape,bound_max_step=True)
result_dic = insertion(model,data,explanations,class_to_explain)
iauc = result_dic["iauc"]
ic = result_dic["ic"]

Changing the filling method

These metrics work by removing parts of the image and replacing it with something else, for e.g. black pixels (Deletion, AD, IIC, ADD) or a blurred version of the input image (Insertion). The default replacing method can be changed with the data_replace_method argument passed to the constructor:

insertion = Insertion(data_shape,explanation_shape,bound_max_step=True,data_replace_method="black")
add = ADD(data_replace_method="blur")

Currently, the autorized values are:

  • "black": replaces with black pixels
  • "blur": replaces with a blurred version of the input image

Demonstration

Look at the demo.ipynb script for a demonstration. If you want to re-run the demo, you should download the model's weights pretrained on the CUB dataset and put it on the project's root. You should also download the CUB test dataset and put it in a "data" folder located at the project's root. The dataset should be formated as expected by the torchvision.datasets.ImageFolder class from torchvision.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

saliency_maps_metrics-0.0.22.tar.gz (7.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

saliency_maps_metrics-0.0.22-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file saliency_maps_metrics-0.0.22.tar.gz.

File metadata

  • Download URL: saliency_maps_metrics-0.0.22.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.12

File hashes

Hashes for saliency_maps_metrics-0.0.22.tar.gz
Algorithm Hash digest
SHA256 c0bf327fdb93b1c4dcb79f811ae22591a49a512c91ae5fb206c7eaf4827186a7
MD5 52b41c1369545a9ac5322bc3aee79a02
BLAKE2b-256 cc322571509f1423fe16309cc8f2eac5eae34e82d488a55a741f5fe7d6444192

See more details on using hashes here.

File details

Details for the file saliency_maps_metrics-0.0.22-py3-none-any.whl.

File metadata

File hashes

Hashes for saliency_maps_metrics-0.0.22-py3-none-any.whl
Algorithm Hash digest
SHA256 c3d82502982ce3a3781cf65296651bbfef856e59d57f6e4bb6fd262d9043dc33
MD5 e17849074d246436e7ad2443e3660b23
BLAKE2b-256 2e3b6115989335525d8b3ba6f11ef3d0d478a24447aeab2a72aa5f00ebc6522d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page