Measures the mean squared error between attribution-based prediction changes and actual model output changes under perturbations. Low infidelity means the explanation closely approximates model behaviour. ↓ better.

infidelity

infidelity(
    forward_func: Callable,
    inputs: TensorOrTupleOfTensorsGeneric,
    attributions: list[TensorOrTupleOfTensorsGeneric] | TensorOrTupleOfTensorsGeneric,
    baselines: BaselineType = None,
    additional_forward_args: Any = None,
    target: ExplanationTarget | list[ExplanationTarget] = NoTarget(),
    feature_mask: TensorOrTupleOfTensorsGeneric | None = None,
    frozen_features: list[Tensor] | None = None,
    perturb_func: Callable | None = None,
    n_perturb_samples: int = 10,
    max_examples_per_batch: int | None = None,
    normalize: bool = True,
    multi_target: bool = False,
    return_dict: bool = False,
) -> Tensor | list[Tensor] | dict[str, Tensor | list[Tensor]]

A wrapper around the Captum library's infidelity metric. The metric returns a list of infidelity scores if multi_target is True using the torchxai.metrics.faithfulness.multi_target._multi_target_infidelity, otherwise it returns a single infidelity score using the captum implementation captum.metrics.infidelity.

Explanation infidelity represents the expected mean-squared error between the explanation multiplied by a meaningful input perturbation and the differences between the predictor function at its input and perturbed input. More details about the measure can be found in the following paper: https://arxiv.org/abs/1901.09392

It is derived from the completeness property of well-known attribution algorithms and is a computationally more efficient and generalized notion of Sensitivity-n. The latter measures correlations between the sum of the attributions and the differences of the predictor function at its input and fixed baseline. More details about the Sensitivity-n can be found here: https://arxiv.org/abs/1711.06104

The users can perturb the inputs any desired way by providing any perturbation function that takes the inputs (and optionally baselines) and returns perturbed inputs or perturbed inputs and corresponding perturbations.

This specific implementation is primarily tested for attribution-based explanation methods but the idea can be expanded to use for non attribution-based interpretability methods as well.

Args:

forward_func (Callable):
        The forward function of the model or any modification of it.

perturb_func (Callable):
        The perturbation function of model inputs. This function takes
        model inputs and optionally baselines as input arguments and returns
        either a tuple of perturbations and perturbed inputs or just
        perturbed inputs. For example:

        >>> def my_perturb_func(inputs):
        >>>   <MY-LOGIC-HERE>
        >>>   return perturbations, perturbed_inputs

        If we want to only return perturbed inputs and compute
        perturbations internally then we can wrap perturb_func with
        `infidelity_perturb_func_decorator` decorator such as:

        >>> from captum.metrics import infidelity_perturb_func_decorator

        >>> @infidelity_perturb_func_decorator(<multipy_by_inputs flag>)
        >>> def my_perturb_func(inputs):
        >>>   <MY-LOGIC-HERE>
        >>>   return perturbed_inputs

        `infidelity_perturb_func_decorator` needs to be used with
        `multipy_by_inputs` flag set to False in case infidelity
        score is being computed for attribution maps that are local aka
        that do not factor in inputs in the final attribution score.
        Such attribution algorithms include Saliency, GradCam, Guided Backprop,
        or Integrated Gradients and DeepLift attribution scores that are already
        computed with `multipy_by_inputs=False` flag.

        If there are more than one inputs passed to infidelity function those
        will be passed to `perturb_func` as tuples in the same order as they
        are passed to infidelity function.

        If inputs
         - is a single tensor, the function needs to return a tuple
           of perturbations and perturbed input such as:
           perturb, perturbed_input and only perturbed_input in case
           `infidelity_perturb_func_decorator` is used.
         - is a tuple of tensors, corresponding perturbations and perturbed
           inputs must be computed and returned as tuples in the
           following format:

           (perturb1, perturb2, ... perturbN), (perturbed_input1,
           perturbed_input2, ... perturbed_inputN)

           Similar to previous case here as well we need to return only
           perturbed inputs in case `infidelity_perturb_func_decorator`
           decorates out `perturb_func`.

        It is important to note that for performance reasons `perturb_func`
        isn't called for each example individually but on a batch of
        input examples that are repeated `max_examples_per_batch / batch_size`
        times within the batch.

inputs (Tensor or tuple[Tensor, ...]): Input for which
        attributions are computed. If forward_func takes a single
        tensor as input, a single input tensor should be provided.
        If forward_func takes multiple tensors as input, a tuple
        of the input tensors should be provided. It is assumed
        that for all given input tensors, dimension 0 corresponds
        to the number of examples (aka batch size), and if
        multiple input tensors are provided, the examples must
        be aligned appropriately.

baselines (scalar, Tensor, tuple of scalar, or Tensor, optional):
        Baselines define reference values which sometimes represent ablated
        values and are used to compare with the actual inputs to compute
        importance scores in attribution algorithms. They can be represented
        as:

        - a single tensor, if inputs is a single tensor, with
          exactly the same dimensions as inputs or the first
          dimension is one and the remaining dimensions match
          with inputs.

        - a single scalar, if inputs is a single tensor, which will
          be broadcasted for each input value in input tensor.

        - a tuple of tensors or scalars, the baseline corresponding
          to each tensor in the inputs' tuple can be:

        - either a tensor with matching dimensions to
          corresponding tensor in the inputs' tuple
          or the first dimension is one and the remaining
          dimensions match with the corresponding
          input tensor.

        - or a scalar, corresponding to a tensor in the
          inputs' tuple. This scalar value is broadcasted
          for corresponding input tensor.

        Default: None

attributions (Tensor or tuple[Tensor, ...]):
        Attribution scores computed based on an attribution algorithm.
        This attribution scores can be computed using the implementations
        provided in the `captum.attr` package. Some of those attribution
        approaches are so called global methods, which means that
        they factor in model inputs' multiplier, as described in:
        https://arxiv.org/abs/1711.06104
        Many global attribution algorithms can be used in local modes,
        meaning that the inputs multiplier isn't factored in the
        attribution scores.
        This can be done duing the definition of the attribution algorithm
        by passing `multipy_by_inputs=False` flag.
        For example in case of Integrated Gradients (IG) we can obtain
        local attribution scores if we define the constructor of IG as:
        ig = IntegratedGradients(multipy_by_inputs=False)

        Some attribution algorithms are inherently local.
        Examples of inherently local attribution methods include:
        Saliency, Guided GradCam, Guided Backprop and Deconvolution.

        For local attributions we can use real-valued perturbations
        whereas for global attributions that perturbation is binary.
        https://arxiv.org/abs/1901.09392

        If we want to compute the infidelity of global attributions we
        can use a binary perturbation matrix that will allow us to select
        a subset of features from `inputs` or `inputs - baselines` space.
        This will allow us to approximate sensitivity-n for a global
        attribution algorithm.

        `infidelity_perturb_func_decorator` function decorator is a helper
        function that computes perturbations under the hood if perturbed
        inputs are provided.

        For more details about how to use `infidelity_perturb_func_decorator`,
        please, read the documentation about `perturb_func`

        Attributions have the same shape and dimensionality as the inputs.
        If inputs is a single tensor then the attributions is a single
        tensor as well. If inputs is provided as a tuple of tensors
        then attributions will be tuples of tensors as well.

additional_forward_args (Any, optional): If the forward function
        requires additional arguments other than the inputs for
        which attributions should not be computed, this argument
        can be provided. It must be either a single additional
        argument of a Tensor or arbitrary (non-tuple) type or a tuple
        containing multiple additional arguments including tensors
        or any arbitrary python types. These arguments are provided to
        forward_func in order, following the arguments in inputs.
        Note that the perturbations are not computed with respect
        to these arguments. This means that these arguments aren't
        being passed to `perturb_func` as an input argument.

        Default: None
target (int, tuple, Tensor, or list, optional): Indices for selecting
        predictions from output(for classification cases,
        this is usually the target class).
        If the network returns a scalar value per example, no target
        index is necessary.
        For general 2D outputs, targets can be either:

        - A single integer or a tensor containing a single
          integer, which is applied to all input examples

        - A list of integers or a 1D tensor, with length matching
          the number of examples in inputs (dim 0). Each integer
          is applied as the target for the corresponding example.

          For outputs with > 2 dimensions, targets can be either:

        - A single tuple, which contains #output_dims - 1
          elements. This target index is applied to all examples.

        - A list of tuples with length equal to the number of
          examples in inputs (dim 0), and each tuple containing
          #output_dims - 1 elements. Each tuple is applied as the
          target for the corresponding example.

        Default: None
n_perturb_samples (int, optional): The number of times input tensors
        are perturbed. Each input example in the inputs tensor is expanded
        `n_perturb_samples`
        times before calling `perturb_func` function.

        Default: 10
max_examples_per_batch (int, optional): The number of maximum input
        examples that are processed together. In case the number of
        examples (`input batch size * n_perturb_samples`) exceeds
        `max_examples_per_batch`, they will be sliced
        into batches of `max_examples_per_batch` examples and processed
        in a sequential order. If `max_examples_per_batch` is None, all
        examples are processed together. `max_examples_per_batch` should
        at least be equal `input batch size` and at most
        `input batch size * n_perturb_samples`.

        Default: None
frozen_features (List[torch.Tensor], optional): A list of frozen features that are not perturbed.
        This can be useful for ignoring the input structure features like padding, etc. Default: None
        In case CLS,PAD,SEP tokens are present in the input, they can be frozen by passing the indices
        of feature masks that correspond to these tokens.
normalize (bool, optional): Normalize the dot product of the input
        perturbation and the attribution so the infidelity value is invariant
        to constant scaling of the attribution values. The normalization factor
        beta is defined as the ratio of two mean values:

        .. math::
            \beta = \frac{
                \mathbb{E}_{I \sim \mu_I} [ I^T \Phi(f, x) (f(x) - f(x - I)) ]
            }{
                \mathbb{E}_{I \sim \mu_I} [ (I^T \Phi(f, x))^2 ]
            }

        Please refer the original paper for the meaning of the symbols. Same
        normalization can be found in the paper's official implementation
        https://github.com/chihkuanyeh/saliency_evaluation

        Default: False
multi_target (bool, optional): A boolean flag that indicates whether the metric computation is for
        multi-target explanations. if set to true, the targets are required to be a list of integers
        each corresponding to a required target class in the output. The corresponding metric outputs
        are then returned as a list of metric outputs corresponding to each target class. For multi-target
        infidelity, captum implementation is extened in _multi_target_infidelity function.
        Default is False.

Returns:

infidelities (Tensor): A tensor of scalar infidelity scores per
        input example. The first dimension is equal to the
        number of examples in the input batch and the second
        dimension is one.

Examples:: >>> # ImageClassifier takes a single input tensor of images Nx3x32x32, >>> # and returns an Nx10 tensor of class probabilities. >>> net = ImageClassifier() >>> saliency = Saliency(net) >>> input = torch.randn(2, 3, 32, 32, requires_grad=True) >>> # Computes saliency maps for class 3. >>> attribution = saliency.attribute(input, target=3) >>> # define a perturbation function for the input >>> def perturb_fn(inputs): >>> noise = torch.tensor(np.random.normal(0, 0.003, inputs.shape)).float() >>> return noise, inputs - noise >>> # Computes infidelity score for saliency maps >>> infid = infidelity(net, perturb_fn, input, attribution)

Source code in torchxai/metrics/faithfulness/infidelity.py
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
def infidelity(
    forward_func: Callable,
    inputs: TensorOrTupleOfTensorsGeneric,
    attributions: list[TensorOrTupleOfTensorsGeneric] | TensorOrTupleOfTensorsGeneric,
    baselines: BaselineType = None,
    additional_forward_args: Any = None,
    target: ExplanationTarget | list[ExplanationTarget] = NoTarget(),
    feature_mask: TensorOrTupleOfTensorsGeneric | None = None,
    frozen_features: list[torch.Tensor] | None = None,
    perturb_func: Callable | None = None,
    n_perturb_samples: int = 10,
    max_examples_per_batch: int | None = None,
    normalize: bool = True,
    multi_target: bool = False,
    return_dict: bool = False,
) -> Tensor | list[Tensor] | dict[str, Tensor | list[Tensor]]:
    r"""
    A wrapper around the Captum library's infidelity metric. The metric returns a list of infidelity
    scores if multi_target is True using the `torchxai.metrics.faithfulness.multi_target._multi_target_infidelity`,
    otherwise it returns a single infidelity score using the captum implementation `captum.metrics.infidelity`.

    Explanation infidelity represents the expected mean-squared error
    between the explanation multiplied by a meaningful input perturbation
    and the differences between the predictor function at its input
    and perturbed input.
    More details about the measure can be found in the following paper:
    https://arxiv.org/abs/1901.09392

    It is derived from the completeness property of well-known attribution
    algorithms and is a computationally more efficient and generalized
    notion of Sensitivity-n. The latter measures correlations between the sum
    of the attributions and the differences of the predictor function at
    its input and fixed baseline. More details about the Sensitivity-n can
    be found here:
    https://arxiv.org/abs/1711.06104

    The users can perturb the inputs any desired way by providing any
    perturbation function that takes the inputs (and optionally baselines)
    and returns perturbed inputs or perturbed inputs and corresponding
    perturbations.

    This specific implementation is primarily tested for attribution-based
    explanation methods but the idea can be expanded to use for non
    attribution-based interpretability methods as well.

    Args:

        forward_func (Callable):
                The forward function of the model or any modification of it.

        perturb_func (Callable):
                The perturbation function of model inputs. This function takes
                model inputs and optionally baselines as input arguments and returns
                either a tuple of perturbations and perturbed inputs or just
                perturbed inputs. For example:

                >>> def my_perturb_func(inputs):
                >>>   <MY-LOGIC-HERE>
                >>>   return perturbations, perturbed_inputs

                If we want to only return perturbed inputs and compute
                perturbations internally then we can wrap perturb_func with
                `infidelity_perturb_func_decorator` decorator such as:

                >>> from captum.metrics import infidelity_perturb_func_decorator

                >>> @infidelity_perturb_func_decorator(<multipy_by_inputs flag>)
                >>> def my_perturb_func(inputs):
                >>>   <MY-LOGIC-HERE>
                >>>   return perturbed_inputs

                `infidelity_perturb_func_decorator` needs to be used with
                `multipy_by_inputs` flag set to False in case infidelity
                score is being computed for attribution maps that are local aka
                that do not factor in inputs in the final attribution score.
                Such attribution algorithms include Saliency, GradCam, Guided Backprop,
                or Integrated Gradients and DeepLift attribution scores that are already
                computed with `multipy_by_inputs=False` flag.

                If there are more than one inputs passed to infidelity function those
                will be passed to `perturb_func` as tuples in the same order as they
                are passed to infidelity function.

                If inputs
                 - is a single tensor, the function needs to return a tuple
                   of perturbations and perturbed input such as:
                   perturb, perturbed_input and only perturbed_input in case
                   `infidelity_perturb_func_decorator` is used.
                 - is a tuple of tensors, corresponding perturbations and perturbed
                   inputs must be computed and returned as tuples in the
                   following format:

                   (perturb1, perturb2, ... perturbN), (perturbed_input1,
                   perturbed_input2, ... perturbed_inputN)

                   Similar to previous case here as well we need to return only
                   perturbed inputs in case `infidelity_perturb_func_decorator`
                   decorates out `perturb_func`.

                It is important to note that for performance reasons `perturb_func`
                isn't called for each example individually but on a batch of
                input examples that are repeated `max_examples_per_batch / batch_size`
                times within the batch.

        inputs (Tensor or tuple[Tensor, ...]): Input for which
                attributions are computed. If forward_func takes a single
                tensor as input, a single input tensor should be provided.
                If forward_func takes multiple tensors as input, a tuple
                of the input tensors should be provided. It is assumed
                that for all given input tensors, dimension 0 corresponds
                to the number of examples (aka batch size), and if
                multiple input tensors are provided, the examples must
                be aligned appropriately.

        baselines (scalar, Tensor, tuple of scalar, or Tensor, optional):
                Baselines define reference values which sometimes represent ablated
                values and are used to compare with the actual inputs to compute
                importance scores in attribution algorithms. They can be represented
                as:

                - a single tensor, if inputs is a single tensor, with
                  exactly the same dimensions as inputs or the first
                  dimension is one and the remaining dimensions match
                  with inputs.

                - a single scalar, if inputs is a single tensor, which will
                  be broadcasted for each input value in input tensor.

                - a tuple of tensors or scalars, the baseline corresponding
                  to each tensor in the inputs' tuple can be:

                - either a tensor with matching dimensions to
                  corresponding tensor in the inputs' tuple
                  or the first dimension is one and the remaining
                  dimensions match with the corresponding
                  input tensor.

                - or a scalar, corresponding to a tensor in the
                  inputs' tuple. This scalar value is broadcasted
                  for corresponding input tensor.

                Default: None

        attributions (Tensor or tuple[Tensor, ...]):
                Attribution scores computed based on an attribution algorithm.
                This attribution scores can be computed using the implementations
                provided in the `captum.attr` package. Some of those attribution
                approaches are so called global methods, which means that
                they factor in model inputs' multiplier, as described in:
                https://arxiv.org/abs/1711.06104
                Many global attribution algorithms can be used in local modes,
                meaning that the inputs multiplier isn't factored in the
                attribution scores.
                This can be done duing the definition of the attribution algorithm
                by passing `multipy_by_inputs=False` flag.
                For example in case of Integrated Gradients (IG) we can obtain
                local attribution scores if we define the constructor of IG as:
                ig = IntegratedGradients(multipy_by_inputs=False)

                Some attribution algorithms are inherently local.
                Examples of inherently local attribution methods include:
                Saliency, Guided GradCam, Guided Backprop and Deconvolution.

                For local attributions we can use real-valued perturbations
                whereas for global attributions that perturbation is binary.
                https://arxiv.org/abs/1901.09392

                If we want to compute the infidelity of global attributions we
                can use a binary perturbation matrix that will allow us to select
                a subset of features from `inputs` or `inputs - baselines` space.
                This will allow us to approximate sensitivity-n for a global
                attribution algorithm.

                `infidelity_perturb_func_decorator` function decorator is a helper
                function that computes perturbations under the hood if perturbed
                inputs are provided.

                For more details about how to use `infidelity_perturb_func_decorator`,
                please, read the documentation about `perturb_func`

                Attributions have the same shape and dimensionality as the inputs.
                If inputs is a single tensor then the attributions is a single
                tensor as well. If inputs is provided as a tuple of tensors
                then attributions will be tuples of tensors as well.

        additional_forward_args (Any, optional): If the forward function
                requires additional arguments other than the inputs for
                which attributions should not be computed, this argument
                can be provided. It must be either a single additional
                argument of a Tensor or arbitrary (non-tuple) type or a tuple
                containing multiple additional arguments including tensors
                or any arbitrary python types. These arguments are provided to
                forward_func in order, following the arguments in inputs.
                Note that the perturbations are not computed with respect
                to these arguments. This means that these arguments aren't
                being passed to `perturb_func` as an input argument.

                Default: None
        target (int, tuple, Tensor, or list, optional): Indices for selecting
                predictions from output(for classification cases,
                this is usually the target class).
                If the network returns a scalar value per example, no target
                index is necessary.
                For general 2D outputs, targets can be either:

                - A single integer or a tensor containing a single
                  integer, which is applied to all input examples

                - A list of integers or a 1D tensor, with length matching
                  the number of examples in inputs (dim 0). Each integer
                  is applied as the target for the corresponding example.

                  For outputs with > 2 dimensions, targets can be either:

                - A single tuple, which contains #output_dims - 1
                  elements. This target index is applied to all examples.

                - A list of tuples with length equal to the number of
                  examples in inputs (dim 0), and each tuple containing
                  #output_dims - 1 elements. Each tuple is applied as the
                  target for the corresponding example.

                Default: None
        n_perturb_samples (int, optional): The number of times input tensors
                are perturbed. Each input example in the inputs tensor is expanded
                `n_perturb_samples`
                times before calling `perturb_func` function.

                Default: 10
        max_examples_per_batch (int, optional): The number of maximum input
                examples that are processed together. In case the number of
                examples (`input batch size * n_perturb_samples`) exceeds
                `max_examples_per_batch`, they will be sliced
                into batches of `max_examples_per_batch` examples and processed
                in a sequential order. If `max_examples_per_batch` is None, all
                examples are processed together. `max_examples_per_batch` should
                at least be equal `input batch size` and at most
                `input batch size * n_perturb_samples`.

                Default: None
        frozen_features (List[torch.Tensor], optional): A list of frozen features that are not perturbed.
                This can be useful for ignoring the input structure features like padding, etc. Default: None
                In case CLS,PAD,SEP tokens are present in the input, they can be frozen by passing the indices
                of feature masks that correspond to these tokens.
        normalize (bool, optional): Normalize the dot product of the input
                perturbation and the attribution so the infidelity value is invariant
                to constant scaling of the attribution values. The normalization factor
                beta is defined as the ratio of two mean values:

                .. math::
                    \beta = \frac{
                        \mathbb{E}_{I \sim \mu_I} [ I^T \Phi(f, x) (f(x) - f(x - I)) ]
                    }{
                        \mathbb{E}_{I \sim \mu_I} [ (I^T \Phi(f, x))^2 ]
                    }

                Please refer the original paper for the meaning of the symbols. Same
                normalization can be found in the paper's official implementation
                https://github.com/chihkuanyeh/saliency_evaluation

                Default: False
        multi_target (bool, optional): A boolean flag that indicates whether the metric computation is for
                multi-target explanations. if set to true, the targets are required to be a list of integers
                each corresponding to a required target class in the output. The corresponding metric outputs
                are then returned as a list of metric outputs corresponding to each target class. For multi-target
                infidelity, captum implementation is extened in _multi_target_infidelity function.
                Default is False.
    Returns:

        infidelities (Tensor): A tensor of scalar infidelity scores per
                input example. The first dimension is equal to the
                number of examples in the input batch and the second
                dimension is one.

    Examples::
        >>> # ImageClassifier takes a single input tensor of images Nx3x32x32,
        >>> # and returns an Nx10 tensor of class probabilities.
        >>> net = ImageClassifier()
        >>> saliency = Saliency(net)
        >>> input = torch.randn(2, 3, 32, 32, requires_grad=True)
        >>> # Computes saliency maps for class 3.
        >>> attribution = saliency.attribute(input, target=3)
        >>> # define a perturbation function for the input
        >>> def perturb_fn(inputs):
        >>>    noise = torch.tensor(np.random.normal(0, 0.003, inputs.shape)).float()
        >>>    return noise, inputs - noise
        >>> # Computes infidelity score for saliency maps
        >>> infid = infidelity(net, perturb_fn, input, attribution)
    """
    if perturb_func is None:
        perturb_func = default_infidelity_perturb_fn()

    if multi_target:
        assert isinstance(target, list), (
            "For multi-target infidelity, target should be a list of targets"
        )
        assert isinstance(attributions, list), (
            "For multi-target infidelity, attributions should be a list of attributions"
        )
        score = _multi_target_infidelity(
            forward_func=forward_func,
            perturb_func=perturb_func,
            inputs=inputs,
            attributions_list=attributions,
            baselines=baselines,
            additional_forward_args=additional_forward_args,
            targets_list=[t.value for t in target],
            feature_mask=feature_mask,
            frozen_features=frozen_features,
            n_perturb_samples=n_perturb_samples,
            max_examples_per_batch=max_examples_per_batch,
            normalize=normalize,
        )
    else:
        assert isinstance(target, ExplanationTarget), (
            "For single-target infidelity, target should be a single target"
        )
        assert isinstance(attributions, (Tensor, tuple)), (
            "For single-target infidelity, attributions should be a single attribution"
        )
        score = _infidelity(
            forward_func=forward_func,
            perturb_func=perturb_func,
            inputs=inputs,
            attributions=attributions,
            baselines=baselines,
            additional_forward_args=additional_forward_args,
            target=target.value,
            feature_mask=feature_mask,
            frozen_features=frozen_features,
            n_perturb_samples=n_perturb_samples,
            max_examples_per_batch=max_examples_per_batch,
            normalize=normalize,
        )
    if return_dict:
        return {"infidelity_score": score}
    return score