Skip to content

cuge1995/AOF

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AOF Attack

This repository is the official PyTorch implementation of Boosting 3D Adversarial Attacks with Attacking On Frequency

samples

Introduction

Deep neural networks (DNNs) have been shown to be vulnerable to adversarial attacks in the image domain. Recently, 3D adversarial attacks, especially adversarial attacks on point clouds, have elicited mounting interest. However, adversarial point clouds obtained by previous methods show weak transferability and are easy to defend. To address these problems, in this paper we propose a strong point cloud attack method named AOF which pays more attention to the low-frequency component of point clouds. We combine the losses from point cloud and its low-frequency component to craft adversarial samples and focus on the low-frequency component of point cloud in the process of optimization. Extensive experiments validate that AOF can improve the transferability significantly compared to state-of-the-art (SOTA) attacks, and is more robust to state-of-the-art 3D defense methods. Otherwise, compared to adversarial point clouds generated by other adversarial attack methods, adversarial point clouds obtained by AOF contain more deformation than outlier.

If you find our code or paper useful, please considering citing

@article{liu2022boosting,
  title={Boosting 3D Adversarial Attacks with Attacking On Frequency},
  author={Liu, Binbin and Zhang, Jinlai and Chen, Lyujie and Zhu, Jihong},
  journal={arXiv preprint arXiv:2201.10937},
  year={2022}
}

How to use

Dataset

our pretrained model weights for aligned modelnet40 dataset:

we use data and pretrained models of IF-Defense for targeted attack.

Attack

cd baselines

For untargeted aof attack:

NCCL_DEBUG=INFO CUDA_VISIBLE_DEVICES=0,1,2,3,4 python -m torch.distributed.launch --nproc_per_node=5 --master_port=29502 attack_scripts/untargeted_aof_attack.py --process_data --model=pointnet --batch_size=128

For untargeted advpc attack:

NCCL_DEBUG=INFO CUDA_VISIBLE_DEVICES=0,1,2,3,4 python -m torch.distributed.launch --nproc_per_node=5 --master_port=29502 attack_scripts/untargeted_advpc_attack.py --process_data --model=pointnet --batch_size=32

Evaluate

Merge and inference generated adversarial examples:

CUDA_VISIBLE_DEVICES=0 python inference.py --data_root=attack/results/mn40_1024/AdvPC --prefix=UAdvPC-pointnet-0.18-GAMMA_0.25 --model=pointconv

License

Our code is released under MIT License.

Acknowledgements

We thank the authors of following works for opening source their excellent codes.

We also thank the authors of related papers/repos for their inspiring discussions with us.

About

official PyTorch implementation of ‘Boosting 3D Adversarial Attacks with Attacking On Frequency’

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 77.7%
  • C++ 17.3%
  • Cython 3.8%
  • Shell 1.2%