Skip to content
/ SMMix Public

[ICCV 23]This is a Pytorch implementation of our paper "SMMix: Self-Motivated Image Mixing for Vision Transformers"

Notifications You must be signed in to change notification settings

ChenMnZ/SMMix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMMix: Self-Motivated Image Mixing for Vision Transformers (ICCV 2023)

This a Pytorch implementation of our paper SMMix: Self-Motivated Image Mixing for Vision Transformers

Requirements

  • python 3.8.0
  • pytorch 1.7.1
  • torchvision 0.8.2

Data Preparation

  • The ImageNet dataset should be prepared as follows:
ImageNet
├── train
│   ├── folder 1 (class 1)
│   ├── folder 2 (class 2)
│   ├── ...
├── val
│   ├── folder 1 (class 1)
│   ├── folder 2 (class 2)
│   ├── ...

Pre-trained Models

Model Top-1 Accuracy Dowmload
DeiT-T 73.6 model & log
DeiT-S 81.1 model & log
PVT-T 76.4 model & log
PVT-S 81.0 model & log
PVT-M 82.2 model & log
PVT-L 82.7 model & log

Evaluation

./script/eval.sh --data-path DATASET_PATH --model MODEL_NAME --resume CHECKPOINT_PATH

examples:

./script/eval.sh --data-path /media/DATASET/ImageNet --model pvt_small --resume ./checkpoints/pvt_small_smmix.pth
./script/eval.sh --data-path /media/DATASET/ImageNet --model vit_deit_small_patch16_224 --resume ./checkpoints/deit_small_smmix.pth

Training

./script/train.sh --data-path DATASET_PATH --model MODEL_NAME --output_dir LOG_PATH --batch_size 256

examples:

./script/train.sh --data-path /media/DATASET/ImageNet --model pvt_small --output_dir ./log/pvt_small_smmix --batch_size 256
./script/train.sh --data-path /media/DATASET/ImageNet --model vit_deit_small_patch16_224 --output_dir ./log/deit_small_smmix --batch_size 256

About

[ICCV 23]This is a Pytorch implementation of our paper "SMMix: Self-Motivated Image Mixing for Vision Transformers"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages