├── .gitignore ├── LICENSE ├── README.md ├── attack_experiment.py ├── attack_ingredient.py ├── attack_utils.py ├── attacks ├── __init__.py ├── alma_cls.py ├── ddn.py ├── fast_gradient.py ├── fmn.py └── pgd.py ├── checkpoints └── checkpoint_urls.txt ├── cityscapes_resources ├── manual_smooth_majority_colored_label.png └── manual_smooth_majority_label.png ├── dataset_ingredient.py ├── model_ingredient.py ├── seg_attacks_env.yml └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/README.md -------------------------------------------------------------------------------- /attack_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attack_experiment.py -------------------------------------------------------------------------------- /attack_ingredient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attack_ingredient.py -------------------------------------------------------------------------------- /attack_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attack_utils.py -------------------------------------------------------------------------------- /attacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attacks/alma_cls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attacks/alma_cls.py -------------------------------------------------------------------------------- /attacks/ddn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attacks/ddn.py -------------------------------------------------------------------------------- /attacks/fast_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attacks/fast_gradient.py -------------------------------------------------------------------------------- /attacks/fmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attacks/fmn.py -------------------------------------------------------------------------------- /attacks/pgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/attacks/pgd.py -------------------------------------------------------------------------------- /checkpoints/checkpoint_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/checkpoints/checkpoint_urls.txt -------------------------------------------------------------------------------- /cityscapes_resources/manual_smooth_majority_colored_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/cityscapes_resources/manual_smooth_majority_colored_label.png -------------------------------------------------------------------------------- /cityscapes_resources/manual_smooth_majority_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/cityscapes_resources/manual_smooth_majority_label.png -------------------------------------------------------------------------------- /dataset_ingredient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/dataset_ingredient.py -------------------------------------------------------------------------------- /model_ingredient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/model_ingredient.py -------------------------------------------------------------------------------- /seg_attacks_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/seg_attacks_env.yml -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeromerony/alma_prox_segmentation/HEAD/utils.py --------------------------------------------------------------------------------