├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── eval_helper.py ├── generate_poisoned_dataset.py ├── poison_attack.py ├── requirements.txt ├── resnet_model.py ├── setup.sh └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/config.json -------------------------------------------------------------------------------- /eval_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/eval_helper.py -------------------------------------------------------------------------------- /generate_poisoned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/generate_poisoned_dataset.py -------------------------------------------------------------------------------- /poison_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/poison_attack.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.6 2 | tensorflow-gpu==1.3.0 3 | -------------------------------------------------------------------------------- /resnet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/resnet_model.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/setup.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadryLab/label-consistent-backdoor-code/HEAD/train.py --------------------------------------------------------------------------------