Fooling rate metric¶
metric
¶
FoolingRateMetric
¶
Fooling rate metric tracker.
Attributes:
Name | Type | Description |
---|---|---|
all_count |
Total number of samples. |
|
cln_count |
Number of correctly predicted clean samples. |
|
adv_count |
Number of correctly predicted adversarial examples. |
|
targeted_count |
Number of successfully attacked targeted adversarial examples. |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
targeted
|
bool
|
Whether the current attack is targeted or not. Defaults to False. |
False
|
Source code in torchattack/evaluate/metric.py
compute()
¶
Compute the fooling rate and related metrics.
Returns:
Type | Description |
---|---|
Tensor
|
A tuple of torch.Tensors containing the clean sample accuracy, adversarial |
Tensor
|
example accuracy, and fooling rate (either non-targeted or targeted, |
Tensor
|
depending on the attack) computed, respectively. |
Source code in torchattack/evaluate/metric.py
reset()
¶
Reset the metric tracker to initial state.
update(labels, cln_logits, adv_logits)
¶
Update metric tracker during attack progress.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
labels
|
Tensor
|
Ground truth labels for non-targeted attacks, or a tuple of (ground truth labels, target labels) for targeted attacks. |
required |
cln_logits
|
Tensor
|
Prediction logits for clean samples. |
required |
adv_logits
|
Tensor
|
Prediction logits for adversarial examples. |
required |