├── CIFAR ├── Alpha_default1.png ├── Alpha_default2.png ├── Trigger_default1.png ├── Trigger_default2.png ├── __init__.py ├── eval.py ├── model.py ├── test_cifar.py ├── tools.py ├── train_standard.py ├── train_standard_vgg.py ├── train_watermarked.py ├── train_watermarked_vgg.py └── utils │ ├── __init__.py │ ├── eval.py │ ├── images │ ├── cifar.png │ └── imagenet.png │ ├── logger.py │ ├── misc.py │ ├── progress │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.rst │ ├── demo.gif │ ├── progress │ │ ├── __init__.py │ │ ├── bar.py │ │ ├── counter.py │ │ ├── helpers.py │ │ └── spinner.py │ ├── setup.py │ └── test_progress.py │ └── visualize.py ├── GTSRB ├── Alpha_default1.png ├── Alpha_default2.png ├── README.md ├── Trigger_default1.png ├── Trigger_default2.png ├── eval.py ├── evaluate.py ├── gtsrb_dataset.py ├── model.py ├── test_gtsrb.py ├── tools.py ├── train_standard.py ├── train_standard_vgg.py ├── train_watermarked.py ├── train_watermarked_vgg.py └── utils │ ├── __init__.py │ ├── eval.py │ ├── images │ ├── cifar.png │ └── imagenet.png │ ├── logger.py │ ├── misc.py │ ├── progress │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.rst │ ├── demo.gif │ ├── progress │ │ ├── __init__.py │ │ ├── bar.py │ │ ├── counter.py │ │ ├── helpers.py │ │ └── spinner.py │ ├── setup.py │ └── test_progress.py │ └── visualize.py ├── LICENSE ├── README.md └── requirements.txt /CIFAR/Alpha_default1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/Alpha_default1.png -------------------------------------------------------------------------------- /CIFAR/Alpha_default2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/Alpha_default2.png -------------------------------------------------------------------------------- /CIFAR/Trigger_default1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/Trigger_default1.png -------------------------------------------------------------------------------- /CIFAR/Trigger_default2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/Trigger_default2.png -------------------------------------------------------------------------------- /CIFAR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CIFAR/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/eval.py -------------------------------------------------------------------------------- /CIFAR/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/model.py -------------------------------------------------------------------------------- /CIFAR/test_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/test_cifar.py -------------------------------------------------------------------------------- /CIFAR/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/tools.py -------------------------------------------------------------------------------- /CIFAR/train_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/train_standard.py -------------------------------------------------------------------------------- /CIFAR/train_standard_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/train_standard_vgg.py -------------------------------------------------------------------------------- /CIFAR/train_watermarked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/train_watermarked.py -------------------------------------------------------------------------------- /CIFAR/train_watermarked_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/train_watermarked_vgg.py -------------------------------------------------------------------------------- /CIFAR/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/__init__.py -------------------------------------------------------------------------------- /CIFAR/utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/eval.py -------------------------------------------------------------------------------- /CIFAR/utils/images/cifar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/images/cifar.png -------------------------------------------------------------------------------- /CIFAR/utils/images/imagenet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/images/imagenet.png -------------------------------------------------------------------------------- /CIFAR/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/logger.py -------------------------------------------------------------------------------- /CIFAR/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/misc.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/LICENSE -------------------------------------------------------------------------------- /CIFAR/utils/progress/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /CIFAR/utils/progress/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/README.rst -------------------------------------------------------------------------------- /CIFAR/utils/progress/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/demo.gif -------------------------------------------------------------------------------- /CIFAR/utils/progress/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/progress/__init__.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/progress/bar.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/progress/counter.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/progress/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/progress/helpers.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/progress/spinner.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/setup.py -------------------------------------------------------------------------------- /CIFAR/utils/progress/test_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/progress/test_progress.py -------------------------------------------------------------------------------- /CIFAR/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/CIFAR/utils/visualize.py -------------------------------------------------------------------------------- /GTSRB/Alpha_default1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/Alpha_default1.png -------------------------------------------------------------------------------- /GTSRB/Alpha_default2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/Alpha_default2.png -------------------------------------------------------------------------------- /GTSRB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/README.md -------------------------------------------------------------------------------- /GTSRB/Trigger_default1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/Trigger_default1.png -------------------------------------------------------------------------------- /GTSRB/Trigger_default2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/Trigger_default2.png -------------------------------------------------------------------------------- /GTSRB/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/eval.py -------------------------------------------------------------------------------- /GTSRB/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/evaluate.py -------------------------------------------------------------------------------- /GTSRB/gtsrb_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/gtsrb_dataset.py -------------------------------------------------------------------------------- /GTSRB/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/model.py -------------------------------------------------------------------------------- /GTSRB/test_gtsrb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/test_gtsrb.py -------------------------------------------------------------------------------- /GTSRB/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/tools.py -------------------------------------------------------------------------------- /GTSRB/train_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/train_standard.py -------------------------------------------------------------------------------- /GTSRB/train_standard_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/train_standard_vgg.py -------------------------------------------------------------------------------- /GTSRB/train_watermarked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/train_watermarked.py -------------------------------------------------------------------------------- /GTSRB/train_watermarked_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/train_watermarked_vgg.py -------------------------------------------------------------------------------- /GTSRB/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/__init__.py -------------------------------------------------------------------------------- /GTSRB/utils/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/eval.py -------------------------------------------------------------------------------- /GTSRB/utils/images/cifar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/images/cifar.png -------------------------------------------------------------------------------- /GTSRB/utils/images/imagenet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/images/imagenet.png -------------------------------------------------------------------------------- /GTSRB/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/logger.py -------------------------------------------------------------------------------- /GTSRB/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/misc.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/LICENSE -------------------------------------------------------------------------------- /GTSRB/utils/progress/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /GTSRB/utils/progress/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/README.rst -------------------------------------------------------------------------------- /GTSRB/utils/progress/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/demo.gif -------------------------------------------------------------------------------- /GTSRB/utils/progress/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/progress/__init__.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/progress/bar.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/progress/counter.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/progress/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/progress/helpers.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/progress/spinner.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/setup.py -------------------------------------------------------------------------------- /GTSRB/utils/progress/test_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/progress/test_progress.py -------------------------------------------------------------------------------- /GTSRB/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/GTSRB/utils/visualize.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUYimingLi/Open-sourced_Dataset_Protection/HEAD/requirements.txt --------------------------------------------------------------------------------