Code for our paper: "You Only Propagate Once: Accelerating Adversarial Training via Maximal Principle" by Dinghuai Zhang, Tianyuan Zhang, Yiping Lu, Zhanxing Zhu, Bin Dong.
Our paper has been accepted by NeurIPS2019.
- Pytorch==1.0.1, torchvision
- Python 3.5
- tensorboardX
- easydict
- tqdm
git clone https://github.com/a1600012888/YOPO-You-Only-Propagate-Once.git
cd YOPO-You-Only-Propagate-Once
pip3 install -r requirements.txt --user
- normal training:
experiments/CIFAR10/wide34.natural
- PGD adversarial training:
experiments/CIFAR10/wide34.pgd10
runpython train.py -d <whcih_gpu>
You can change all the hyper-parameters in config.py
. And change network in network.py
Actually code in above mentioned director is very flexible and can be easiliy modified. It can be used as a template.
Go to directory experiments/CIFAR10/wide34.yopo-5-3
run python train.py -d <whcih_gpu>
You can change all the hyper-parameters in config.py
. And change network in network.py
Runing this code for the first time will dowload the dataset in ./experiments/CIFAR10/data/
, you can modify the path in dataset.py
The mainbody of experiments/CIFAR10-TRADES/baseline.res-pre18.TRADES.10step
is written according to
TRADES official repo
A tensorflow implementation provided by Runtian Zhai is provided here. The implemetation of the "For Free" paper is also included. It turns out that our YOPO is faster than "For Free" (detailed results will come soon). Thanks for Runtian's help!
@article{zhang2019you,
title={You Only Propagate Once: Accelerating Adversarial Training via Maximal Principle},
author={Zhang, Dinghuai and Zhang, Tianyuan and Lu, Yiping and Zhu, Zhanxing and Dong, Bin},
journal={arXiv preprint arXiv:1905.00877},
year={2019}
}