├── .gitignore ├── README.md ├── config ├── resnet.yaml ├── swin.yaml ├── vit.yaml └── xception.yaml ├── construct_errors_folders.py ├── deepfakes_dataset.py ├── preprocessing ├── detect_faces.py ├── face_detector.py ├── magnify_images.py └── similarity.py ├── save_roc_curves.py ├── test.py ├── test_corr.py ├── train.py ├── transforms └── albu.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/README.md -------------------------------------------------------------------------------- /config/resnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/config/resnet.yaml -------------------------------------------------------------------------------- /config/swin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/config/swin.yaml -------------------------------------------------------------------------------- /config/vit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/config/vit.yaml -------------------------------------------------------------------------------- /config/xception.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/config/xception.yaml -------------------------------------------------------------------------------- /construct_errors_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/construct_errors_folders.py -------------------------------------------------------------------------------- /deepfakes_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/deepfakes_dataset.py -------------------------------------------------------------------------------- /preprocessing/detect_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/preprocessing/detect_faces.py -------------------------------------------------------------------------------- /preprocessing/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/preprocessing/face_detector.py -------------------------------------------------------------------------------- /preprocessing/magnify_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/preprocessing/magnify_images.py -------------------------------------------------------------------------------- /preprocessing/similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/preprocessing/similarity.py -------------------------------------------------------------------------------- /save_roc_curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/save_roc_curves.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/test.py -------------------------------------------------------------------------------- /test_corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/test_corr.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/train.py -------------------------------------------------------------------------------- /transforms/albu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/transforms/albu.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davide-coccomini/Adversarial-Magnification-to-Deceive-Deepfake-Detection-through-Super-Resolution/HEAD/utils.py --------------------------------------------------------------------------------