├── README.md ├── dataset ├── classes.txt ├── fake │ └── example_fake.png └── real │ └── example_real.png ├── detection.py ├── helper_codes ├── transform.py └── xception.py ├── image_prediction.py ├── main.py ├── models └── x-model23.p ├── requirements.txt └── train_dateset.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/README.md -------------------------------------------------------------------------------- /dataset/classes.txt: -------------------------------------------------------------------------------- 1 | fake 2 | real -------------------------------------------------------------------------------- /dataset/fake/example_fake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/dataset/fake/example_fake.png -------------------------------------------------------------------------------- /dataset/real/example_real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/dataset/real/example_real.png -------------------------------------------------------------------------------- /detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/detection.py -------------------------------------------------------------------------------- /helper_codes/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/helper_codes/transform.py -------------------------------------------------------------------------------- /helper_codes/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/helper_codes/xception.py -------------------------------------------------------------------------------- /image_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/image_prediction.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/main.py -------------------------------------------------------------------------------- /models/x-model23.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/models/x-model23.p -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_dateset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i3p9/deepfake-detection-with-xception/HEAD/train_dateset.py --------------------------------------------------------------------------------