snu-mllab / PuzzleMix

Official PyTorch implementation of "Puzzle Mix: Exploiting Saliency and Local Statistics for Optimal Mixup" (ICML'20)
MIT License
159 stars 17 forks source link
data-augmentation mixup

Puzzle Mix: Exploiting Saliency and Local Statistics for Optimal Mixup

This is the code for the paper "Puzzle Mix: Exploiting Saliency and Local Statistics for Optimal Mixup" accepted at ICML'20 (paper, talk, blog). Some parts of the codes are borrowed from manifold mixup (link).

Puzzle Mix image samples

Citing this Work

@inproceedings{kimICML20,
    title= {Puzzle Mix: Exploiting Saliency and Local Statistics for Optimal Mixup},
    author = {Kim, Jang-Hyun and Choo, Wonho and Song, Hyun Oh},
    booktitle = {International Conference on Machine Learning (ICML)},
    year = {2020}
}

Updates

Requirements

This code has been tested with
python 3.6.8
pytorch 1.1.0
torchvision 0.3.0
gco-wrapper (https://github.com/Borda/pyGCO)

matplotlib 2.1.0
numpy 1.13.3
six 1.12.0

Download Checkpoints and Test

We provide a checkpoint of adversarial Puzzle Mix with PreActResNet18 trained on CIFAR-100. The model has 80.34% clean test accuracy and 42.89% accuracy against FGSM with 8/255 l-infinity epsilon-ball.

CIFAR-100 dataset will automatically be downloaded at [data_path]. To test corruption robusetness, download the dataset at here. Note that the corruption dataset should be downloaded at [data_path] with the folder name of Cifar100-C (for CIFAR100) and tiny-imagenet-200-C (for Tiny-ImageNet).

To test the model, run:

cd checkpoint   
python test_robust.py --ckpt preactresnet18 --datapath [data_path]

The other models trained with Puzzle Mix can be also downloaded:

Dataset Model Method Description Model file
CIFAR-100 WRN-28-10 Puzzle Mix [Table 2] 84.0% (top-1) drive
CIFAR-100 WRN-28-10 Puzzle Mix + Adv training [Table 2] 84.0% (Top-1) / 52.8% (FGSM) drive
CIFAR-100 WRN-28-10 Puzzle Mix + Augmentation [Table 7] 83.7% (Top-1) / 71.1% (CIFAR100-C) drive
CIFAR-100 PreActResNet-18 Puzzle Mix [Table 3] 80.4% (Top-1) drive
CIFAR-100 PreActResNet-18 Puzzle Mix + Adv training [Table 3] 80.2% (Top-1) / 42.9% (FGSM) drive
Tiny-ImageNet PreActResNet-18 Puzzle Mix [Table 4] 63.9% (Top-1) drive

Also, we provide a jupyter notebook, Visualization.ipynb, by which users can visualize Puzzle Mix results with image samples.

Reproducing the results

Detailed descriptions of arguments are provided in main.py. Below are some of the examples for reproducing the experimental results.

ImageNet

To test with ImageNet, please refer to ./imagenet_fast or ./imagenet (for 300 epochs training). ./imagenet contains the most concise version of Puzzle Mix training code.

CIFAR-100

Dataset will be downloaded at [data_path] and the results will be saved at [save_path]. If you want to run codes without saving results, please set --log_off True.

Below are commands to reproduce baselines.

For WRN28_10 with 400 epoch, set --arch wrn28_10, --epochs 400, and --schedule 200 300. For WRN28_10 with 200 epoch, set --epochs 200, --schedule 120 170, and --learning_rate 0.2.

Tiny-Imagenet-200

Download dataset

The following process is forked from (link).

  1. Download the zipped data from https://tiny-imagenet.herokuapp.com/
  2. If not already exiting, create a subfolder "data" in root folder "PuzzleMix"
  3. Extract the zipped data in folder PuzzleMix/data
  4. Run the following script (This will arange the validation data in the format required by the pytorch loader)
    python load_data.py

Below are commands to reproduce baselines.

License

MIT License