├── .gitignore ├── README.md ├── attack_spgd.py ├── attacks_sga.py ├── gen_sga.sh ├── gen_sga_eval.sh ├── gen_spgd.sh ├── gen_spgd_eval.sh ├── imagenet_attack.py ├── imagenet_eval.py ├── imgnet_labels.json ├── imgs └── accuracy.jpg ├── prepare_imagenet_data.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/README.md -------------------------------------------------------------------------------- /attack_spgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/attack_spgd.py -------------------------------------------------------------------------------- /attacks_sga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/attacks_sga.py -------------------------------------------------------------------------------- /gen_sga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/gen_sga.sh -------------------------------------------------------------------------------- /gen_sga_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/gen_sga_eval.sh -------------------------------------------------------------------------------- /gen_spgd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/gen_spgd.sh -------------------------------------------------------------------------------- /gen_spgd_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/gen_spgd_eval.sh -------------------------------------------------------------------------------- /imagenet_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/imagenet_attack.py -------------------------------------------------------------------------------- /imagenet_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/imagenet_eval.py -------------------------------------------------------------------------------- /imgnet_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/imgnet_labels.json -------------------------------------------------------------------------------- /imgs/accuracy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/imgs/accuracy.jpg -------------------------------------------------------------------------------- /prepare_imagenet_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/prepare_imagenet_data.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxuannan/Stochastic-Gradient-Aggregation/HEAD/utils.py --------------------------------------------------------------------------------