-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for Overload attack #2337
Merged
beat-buesser
merged 17 commits into
Trusted-AI:dev_1.18.0
from
CNOCycle:attack/overload
Jun 15, 2024
Merged
Changes from 14 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ed4ddff
Support Overload attack
CNOCycle 3c66840
Refine doc-string and license
CNOCycle 547f8d8
Replace Yolo model with PyTorchObjectDetector
CNOCycle 5b2303f
Separate files with different licenses
CNOCycle 4202a92
Update notebook
CNOCycle acd9e5f
Refine unit tests
CNOCycle c6a53c1
Correct attcking algorithm
CNOCycle 642b316
Update notebook
CNOCycle f9d5d2c
Check the number of ghost objects in unittest
CNOCycle 895c6d7
Merge branch 'dev_1.18.0' into attack/overload
beat-buesser 8db0d8e
fix for type checker
CNOCycle 9fa26e5
fix for circular import
CNOCycle b9aa13b
Install yolo5 repo
CNOCycle 5ad5fe1
Add arguments in tests
CNOCycle fc0923e
Fix for TYPE_CHECKING
CNOCycle 3d52fbb
Fix for the version yolov5
CNOCycle 7e589ee
Format coding style by the black
CNOCycle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,246 @@ | ||
# MIT License | ||
# | ||
# Copyright (C) The Adversarial Robustness Toolbox (ART) Authors 2024 | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the | ||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit | ||
# persons to whom the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the | ||
# Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | ||
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
""" | ||
This module implements the Overload attack. This is a white-box attack. | ||
|
||
| Paper link: https://arxiv.org/abs/2304.05370 | ||
""" | ||
# pylint: disable=C0302 | ||
|
||
import logging | ||
from typing import Optional, Tuple, TYPE_CHECKING | ||
|
||
import numpy as np | ||
|
||
from art.attacks.attack import EvasionAttack | ||
from art.attacks.evasion.overload.box_iou import box_iou | ||
from art.utils import PYTORCH_OBJECT_DETECTOR_TYPE | ||
|
||
if TYPE_CHECKING: | ||
# pylint: disable=C0412 | ||
import torch | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class OverloadPyTorch(EvasionAttack): | ||
""" | ||
The overload attack. | ||
|
||
| Paper link: https://arxiv.org/abs/2304.05370 | ||
""" | ||
|
||
attack_params = EvasionAttack.attack_params + [ | ||
"eps", | ||
"max_iter", | ||
"num_grid", | ||
"batch_size", | ||
] | ||
|
||
_estimator_requirements = () | ||
|
||
def __init__( | ||
self, | ||
estimator: "PYTORCH_OBJECT_DETECTOR_TYPE", | ||
eps: float, | ||
max_iter: int, | ||
num_grid: int, | ||
batch_size: int, | ||
) -> None: | ||
""" | ||
Create a overload attack instance. | ||
|
||
:param estimator: A PyTorch object detection estimator for a YOLO5 model. | ||
:param eps: Maximum perturbation that the attacker can introduce. | ||
:param max_iter: The maximum number of iterations. | ||
:param num_grid: The number of grids for width and high dimension. | ||
:param batch_size: Size of the batch on which adversarial samples are generated. | ||
""" | ||
super().__init__(estimator=estimator) | ||
self.eps = eps | ||
self.max_iter = max_iter | ||
self.num_grid = num_grid | ||
self.batch_size = batch_size | ||
self._check_params() | ||
|
||
def generate(self, x: np.ndarray, y: Optional[np.ndarray] = None, **kwargs) -> np.ndarray: | ||
""" | ||
Generate adversarial samples and return them in an array. | ||
|
||
:param x: An array with the original inputs to be attacked. | ||
:param y: Not used. | ||
:return: An array holding the adversarial examples. | ||
""" | ||
|
||
# Compute adversarial examples with implicit batching | ||
x_adv = x.copy() | ||
for batch_id in range(int(np.ceil(x_adv.shape[0] / float(self.batch_size)))): | ||
batch_index_1 = batch_id * self.batch_size | ||
batch_index_2 = min((batch_id + 1) * self.batch_size, x_adv.shape[0]) | ||
x_batch = x_adv[batch_index_1:batch_index_2] | ||
x_adv[batch_index_1:batch_index_2] = self._generate_batch(x_batch) | ||
|
||
return x_adv | ||
|
||
def _generate_batch(self, x_batch: np.ndarray, y_batch: Optional[np.ndarray] = None) -> np.ndarray: | ||
""" | ||
Run the attack on a batch of images. | ||
|
||
:param x_batch: A batch of original examples. | ||
:param y_batch: Not Used. | ||
:return: A batch of adversarial examples. | ||
""" | ||
|
||
import torch | ||
x_org = torch.from_numpy(x_batch).to(self.estimator.device) | ||
x_adv = x_org.clone() | ||
|
||
cond = torch.logical_or(x_org < 0.0, x_org > 1.0) | ||
if torch.any(cond): | ||
raise ValueError("The value of each pixel must be normalized in the range [0, 1].") | ||
|
||
for _ in range(self.max_iter): | ||
x_adv = self._attack(x_adv, x_org) | ||
|
||
return x_adv.cpu().detach().numpy() | ||
|
||
def _attack(self, | ||
x_adv: "torch.Tensor", | ||
x: "torch.Tensor") -> "torch.Tensor": | ||
""" | ||
Run attack. | ||
|
||
:param x_batch: A batch of original examples. | ||
:param y_batch: Not Used. | ||
:return: A batch of adversarial examples. | ||
""" | ||
|
||
import torch | ||
|
||
x_adv.requires_grad_() | ||
with torch.enable_grad(): | ||
loss, pixel_weight = self._loss(x_adv) | ||
grad = torch.autograd.grad(torch.mean(loss), [x_adv])[0] | ||
|
||
with torch.inference_mode(): | ||
x_adv.add_(pixel_weight * torch.sign(grad)) | ||
x_adv.clamp_(x - self.eps, x + self.eps) | ||
x_adv.clamp_(0.0, 1.0) | ||
|
||
x_adv.requires_grad_(False) | ||
return x_adv | ||
|
||
def _loss(self, x: "torch.tensor") -> Tuple["torch.tensor", "torch.tensor"]: | ||
""" | ||
Compute the weight of each pixel and the overload loss for a given image. | ||
|
||
:param x: A given image | ||
:return: Overload loss and the weight of each pixel | ||
""" | ||
|
||
import torch | ||
adv_logits = self.estimator.model.model(x) | ||
if type(adv_logits) is tuple: | ||
adv_logits = adv_logits[0] | ||
|
||
THRESHOLD = self.estimator.model.conf | ||
conf = adv_logits[..., 4] | ||
prob = adv_logits[..., 5:] | ||
prob = torch.where(conf[:, :, None] * prob > THRESHOLD, torch.ones_like(prob), prob) | ||
prob = torch.sum(prob, dim=2) | ||
conf = conf * prob | ||
|
||
ind_loss = -(1.0 - conf) * (1.0 - conf) | ||
ind_loss = torch.sum(ind_loss, dim=1) | ||
|
||
pixel_weight = torch.ones_like(x) | ||
pixel_weight.requires_grad_(False) | ||
with torch.inference_mode(): | ||
stride_x = x.shape[-2] // self.num_grid | ||
stride_y = x.shape[-1] // self.num_grid | ||
grid_box = torch.zeros((0, 4), device=x.device) | ||
for ii in range(self.num_grid): | ||
for jj in range(self.num_grid): | ||
x1 = ii * stride_x | ||
y1 = jj * stride_y | ||
x2 = min(x1 + stride_x, x.shape[-2]) | ||
y2 = min(y1 + stride_y, x.shape[-1]) | ||
bb = torch.as_tensor([x1, y1, x2, y2], device=x.device)[None, :] | ||
grid_box = torch.cat([grid_box, bb], dim=0) | ||
|
||
for xi in range(x.shape[0]): | ||
xyhw = adv_logits[xi, :, :4] | ||
prob = torch.max(adv_logits[xi, :, 5:], dim=1).values | ||
box_idx = adv_logits[xi, :, 4] * prob > THRESHOLD | ||
xyhw = xyhw[box_idx] | ||
c_xyxy = self.xywh2xyxy(xyhw) | ||
scores = box_iou(grid_box, c_xyxy) | ||
scores = torch.where(scores > 0.0, torch.ones_like(scores), torch.zeros_like(scores)) | ||
scores = torch.sum(scores, dim=1) | ||
|
||
# a native implementation: | ||
# Increase the weight of the grid with fewer objects | ||
idx_min = torch.argmin(scores) | ||
grid_min = grid_box[idx_min] | ||
x1, y1, x2, y2 = grid_min.int() | ||
pixel_weight[xi,:, y1:y2, x1:x2] = pixel_weight[xi,:, y1:y2, x1:x2] * 2 | ||
pixel_weight = pixel_weight / torch.max(pixel_weight[xi,:]) / 255.0 | ||
|
||
return ind_loss, pixel_weight | ||
|
||
def xywh2xyxy(self, xywh: "torch.tensor") -> "torch.tensor": | ||
""" | ||
Convert the representation from xywh format yo xyxy format. | ||
|
||
: param xyhw: A n by 4 boxes store the information in xyhw format | ||
where [x ,y, w h] is [center_x, center_y, width, height] | ||
: return: The n by 4 boxex in xyxy format | ||
where [x1, y1, x2, y2] is [top_left_x, top_left_y, bottom_right_x, bottom_right_y] | ||
""" | ||
xyxy = xywh.clone() | ||
xyxy[:, 0] = xywh[:, 0] - xywh[:, 2] / 2 | ||
xyxy[:, 1] = xywh[:, 1] - xywh[:, 3] / 2 | ||
xyxy[:, 2] = xywh[:, 0] + xywh[:, 2] / 2 | ||
xyxy[:, 3] = xywh[:, 1] + xywh[:, 3] / 2 | ||
return xyxy | ||
|
||
def _check_params(self) -> None: | ||
|
||
if not isinstance(self.eps, float): | ||
raise TypeError("The eps has to be of type float.") | ||
|
||
if self.eps < 0 or self.eps > 1: | ||
raise ValueError("The eps must be in the range [0, 1].") | ||
|
||
if not isinstance(self.max_iter, int): | ||
raise TypeError("The max_iter has to be of type int.") | ||
|
||
if self.max_iter < 1: | ||
raise ValueError("The number of iterations must be a positive integer.") | ||
|
||
if not isinstance(self.num_grid, int): | ||
raise TypeError("The num_grid has to be of type int.") | ||
|
||
if self.num_grid < 1: | ||
raise ValueError("The number of grid must be a positive integer.") | ||
|
||
if not isinstance(self.batch_size, int): | ||
raise TypeError("The batch_size has to be of type int.") | ||
|
||
if self.batch_size < 1: | ||
raise ValueError("The batch size must be a positive integer.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,7 @@ flake8~=4.0.1 | |
pytest-mock~=3.14.0 | ||
pytest-cov~=4.1.0 | ||
requests~=2.31.0 | ||
|
||
ultralytics==8.2.30 | ||
# ART | ||
-e . | ||
|
||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.