├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── environment.yml ├── gen_adv.py ├── models ├── architectures │ ├── __init__.py │ ├── models.py │ └── resnet.py └── checkpoints │ └── .gitkeep ├── requirements.txt ├── sort_dataset.py ├── teaser.gif ├── train.py └── utils ├── adv_evaluation.py ├── datasets.py ├── evaluation.py ├── losses.py └── transforms.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pkl 3 | *.sh 4 | runs/* -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/environment.yml -------------------------------------------------------------------------------- /gen_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/gen_adv.py -------------------------------------------------------------------------------- /models/architectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/architectures/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/models/architectures/models.py -------------------------------------------------------------------------------- /models/architectures/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/models/architectures/resnet.py -------------------------------------------------------------------------------- /models/checkpoints/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/requirements.txt -------------------------------------------------------------------------------- /sort_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/sort_dataset.py -------------------------------------------------------------------------------- /teaser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/teaser.gif -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/train.py -------------------------------------------------------------------------------- /utils/adv_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/utils/adv_evaluation.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/utils/evaluation.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CEA-LIST/adv-reid/HEAD/utils/transforms.py --------------------------------------------------------------------------------