LTP¶
LTP
¶
Bases: Attack
LTP Attack (Learning Transferable Adversarial Perturbations).
From the paper: Learning Transferable 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
|
LTPWeights | str | None
|
Pretrained weights for the generator. Either import and use the enum, or use its name. Defaults to LTPWeights.DEFAULT. |
DEFAULT
|
checkpoint_path
|
str | None
|
Path to a custom checkpoint. 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/ltp.py
forward(x, *args, **kwargs)
¶
Perform LTP 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/ltp.py
LTPWeights
¶
Bases: GeneratorWeightsEnum
Pretrained weights for the LTP attack generator are sourced from the original implementation of the LTP attack.
Source code in torchattack/ltp.py
Available weights:
DENSENET121_IMAGENET
INCEPTION_V3_IMAGENET
RESNET152_IMAGENET
SQUEEZENET_IMAGENET
VGG16_IMAGENET
DEFAULT