CVLGJun 2, 2024

Improving Accuracy-robustness Trade-off via Pixel Reweighted Adversarial Training

arXiv:2406.00685v111 citations
Originality Incremental advance
AI Analysis

This addresses the problem of balancing accuracy and robustness in adversarial training for machine learning models, offering an incremental improvement by focusing on key pixel regions.

The paper tackles the accuracy-robustness trade-off in adversarial training by proposing Pixel-reweighted Adversarial Training (PART), which reduces perturbation budgets for less influential pixels based on class activation mapping, resulting in improved accuracy without compromising robustness on datasets like CIFAR-10, SVHN, and TinyImagenet-200.

Adversarial training (AT) trains models using adversarial examples (AEs), which are natural images modified with specific perturbations to mislead the model. These perturbations are constrained by a predefined perturbation budget $ε$ and are equally applied to each pixel within an image. However, in this paper, we discover that not all pixels contribute equally to the accuracy on AEs (i.e., robustness) and accuracy on natural images (i.e., accuracy). Motivated by this finding, we propose Pixel-reweighted AdveRsarial Training (PART), a new framework that partially reduces $ε$ for less influential pixels, guiding the model to focus more on key regions that affect its outputs. Specifically, we first use class activation mapping (CAM) methods to identify important pixel regions, then we keep the perturbation budget for these regions while lowering it for the remaining regions when generating AEs. In the end, we use these pixel-reweighted AEs to train a model. PART achieves a notable improvement in accuracy without compromising robustness on CIFAR-10, SVHN and TinyImagenet-200, justifying the necessity to allocate distinct weights to different pixel regions in robust classification.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes