├── .gitignore ├── LICENSE ├── README.md ├── attack.py ├── differential_evolution.py ├── models ├── __init__.py ├── densenet.py ├── dpn.py ├── googlenet.py ├── lenet.py ├── mobilenet.py ├── mobilenetv2.py ├── pnasnet.py ├── preact_resnet.py ├── resnet.py ├── resnext.py ├── senet.py ├── shufflenet.py └── vgg.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/attack.py -------------------------------------------------------------------------------- /differential_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/differential_evolution.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/densenet.py -------------------------------------------------------------------------------- /models/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/dpn.py -------------------------------------------------------------------------------- /models/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/googlenet.py -------------------------------------------------------------------------------- /models/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/lenet.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/mobilenetv2.py -------------------------------------------------------------------------------- /models/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/pnasnet.py -------------------------------------------------------------------------------- /models/preact_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/preact_resnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/resnext.py -------------------------------------------------------------------------------- /models/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/senet.py -------------------------------------------------------------------------------- /models/shufflenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/shufflenet.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/models/vgg.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DebangLi/one-pixel-attack-pytorch/HEAD/utils.py --------------------------------------------------------------------------------