GAMA¶
GAMA
¶
Bases: Attack
GAMA - Generative Adversarial Multi-Object Scene Attacks.
From the paper: GAMA: Generative Adversarial Multi-Object Scene Attacks.
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
|
GAMAWeights | str | None
|
Pretrained weights for the generator. Either import and use the enum, or use its name. Defaults to GAMAWeights.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/gama.py
forward(x, *args, **kwargs)
¶
Perform GAMA 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/gama.py
GAMAWeights
¶
Bases: GeneratorWeightsEnum
We provide pretrained weights of the GAMA attack generator with training steps identical to the described settings in the paper and appendix. Specifically, we use ViT-B/16 as the backend of CLIP. Training epochs are set to 5 and 10 for the COCO and VOC datasets, respectively.
Source code in torchattack/gama.py
Available weights:
DENSENET169_COCO
DENSENET169_VOC
RESNET152_COCO
RESNET152_VOC
VGG16_COCO
VGG16_VOC
VGG19_COCO
VGG19_VOC
DEFAULT