CDA¶
CDA
¶
Bases: Attack
Cross-domain Attack (CDA).
From the paper: Cross-Domain Transferability of Adversarial Perturbations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
device
|
device | None
|
Device to use for tensors. Defaults to cuda if available. |
None
|
eps
|
float
|
The maximum perturbation. Defaults to 10/255. |
10 / 255
|
weights
|
CDAWeights | str | None
|
Pretrained weights for the generator. Either import and use the enum, or use its name. Defaults to CDAWeights.DEFAULT. |
DEFAULT
|
checkpoint_path
|
str | None
|
Path to a custom checkpoint. Defaults to None. |
None
|
inception
|
bool | None
|
Whether to use inception (crop layer 3x300x300 to 3x299x299). Defaults to None. |
None
|
clip_min
|
float
|
Minimum value for clipping. Defaults to 0.0. |
0.0
|
clip_max
|
float
|
Maximum value for clipping. Defaults to 1.0. |
1.0
|
Source code in torchattack/cda.py
forward(x, *args, **kwargs)
¶
Perform CDA on a batch of images.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
Tensor
|
A batch of images. Shape: (N, C, H, W). |
required |
Returns:
Type | Description |
---|---|
Tensor
|
The perturbed images if successful. Shape: (N, C, H, W). |
Source code in torchattack/cda.py
CDAWeights
¶
Bases: GeneratorWeightsEnum
Pretrained weights for the CDA attack generator are sourced from the original implementation of the CDA attack.
Source code in torchattack/cda.py
Available weights:
RESNET152_IMAGENET
INCEPTION_V3_IMAGENET
VGG16_IMAGENET
VGG19_IMAGENET
DEFAULT