This is a brief PyTorch implementation of EfficientNetV2[paper], providing with experiments on ImageNet and CIFAR-10/100.
The official TensorFlow implementation is at google/automl/efficientnetv2.
sh prepare.sh
python train.py efficientnetv2-b0 cifar10
if using Distributed Data Parallel Training:
python train.py efficientnetv2-b0 cifar10 --ddp
python eval.py efficientnetv2-b0 cifar10 --ckpt weights/best.pth.tar
With sincerely appreciation to google/automl/efficientnetv2 and lukemelas/EfficientNet-PyTorch!
@article{tan2021efficientnetv2,
title={Efficientnetv2: Smaller models and faster training},
author={Tan, Mingxing and Le, Quoc V},
journal={arXiv preprint arXiv:2104.00298},
year={2021}
}