├── .gitignore ├── LICENSE-FaceForensics ├── README.md ├── aggregate_stats.py ├── attack.py ├── attack_algos.py ├── convert_to_mjpeg.py ├── create_test_data.py ├── dataset ├── __init__.py └── transform.py ├── detect_from_video.py ├── network ├── __init__.py ├── classifier.py ├── models.py └── xception.py ├── requirements.txt ├── robust_transforms.py ├── run_experiments.py ├── test_split.json ├── test_transforms.py └── video_compression.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-FaceForensics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/LICENSE-FaceForensics -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/README.md -------------------------------------------------------------------------------- /aggregate_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/aggregate_stats.py -------------------------------------------------------------------------------- /attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/attack.py -------------------------------------------------------------------------------- /attack_algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/attack_algos.py -------------------------------------------------------------------------------- /convert_to_mjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/convert_to_mjpeg.py -------------------------------------------------------------------------------- /create_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/create_test_data.py -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/dataset/transform.py -------------------------------------------------------------------------------- /detect_from_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/detect_from_video.py -------------------------------------------------------------------------------- /network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/network/classifier.py -------------------------------------------------------------------------------- /network/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/network/models.py -------------------------------------------------------------------------------- /network/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/network/xception.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/requirements.txt -------------------------------------------------------------------------------- /robust_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/robust_transforms.py -------------------------------------------------------------------------------- /run_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/run_experiments.py -------------------------------------------------------------------------------- /test_split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/test_split.json -------------------------------------------------------------------------------- /test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/test_transforms.py -------------------------------------------------------------------------------- /video_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/AdversarialDeepFakes/HEAD/video_compression.py --------------------------------------------------------------------------------