├── DFT.PNG ├── Frame-based_results.PNG ├── README.md ├── ROC_results.png ├── Test_accuracy.png ├── spatiotemporal_convolutional_network.PNG └── src ├── DFT ├── FaceForensic.ipynb ├── README.md ├── radialProfile.py └── roc_curve.png ├── Pytorch_Retinaface ├── LICENSE.MIT ├── convert_to_onnx.py ├── data │ ├── FDDB │ │ └── img_list.txt │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── config.cpython-38.pyc │ │ ├── data_augment.cpython-38.pyc │ │ └── wider_face.cpython-38.pyc │ ├── config.py │ ├── data_augment.py │ └── wider_face.py ├── detect.py ├── layers │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── functions │ │ ├── __pycache__ │ │ │ └── prior_box.cpython-38.pyc │ │ └── prior_box.py │ └── modules │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── multibox_loss.cpython-38.pyc │ │ └── multibox_loss.py └── models │ ├── net.py │ └── retinaface.py ├── RCN ├── RCN.ipynb └── dataset_organizer.py ├── assets ├── demo1.gif ├── demo2.gif ├── hmdb51_results.png └── ucf101_results.png ├── dataloaders ├── __pycache__ │ ├── dataset.cpython-36.pyc │ ├── dataset.cpython-38.pyc │ └── mypath.cpython-38.pyc ├── dataset.py ├── hmdb_labels.txt └── ucf_labels.txt ├── mypath.py ├── network ├── C3D_model.py └── I3D.py └── train.py /DFT.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/DFT.PNG -------------------------------------------------------------------------------- /Frame-based_results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/Frame-based_results.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/README.md -------------------------------------------------------------------------------- /ROC_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/ROC_results.png -------------------------------------------------------------------------------- /Test_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/Test_accuracy.png -------------------------------------------------------------------------------- /spatiotemporal_convolutional_network.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/spatiotemporal_convolutional_network.PNG -------------------------------------------------------------------------------- /src/DFT/FaceForensic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/DFT/FaceForensic.ipynb -------------------------------------------------------------------------------- /src/DFT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/DFT/README.md -------------------------------------------------------------------------------- /src/DFT/radialProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/DFT/radialProfile.py -------------------------------------------------------------------------------- /src/DFT/roc_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/DFT/roc_curve.png -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/LICENSE.MIT -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/convert_to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/convert_to_onnx.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/FDDB/img_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/FDDB/img_list.txt -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/__init__.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/__pycache__/data_augment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/__pycache__/data_augment.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/__pycache__/wider_face.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/__pycache__/wider_face.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/config.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/data_augment.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/data/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/data/wider_face.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/detect.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/__init__.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/functions/__pycache__/prior_box.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/functions/__pycache__/prior_box.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/functions/prior_box.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/modules/__init__.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/modules/__pycache__/multibox_loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/modules/__pycache__/multibox_loss.cpython-38.pyc -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/models/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/models/net.py -------------------------------------------------------------------------------- /src/Pytorch_Retinaface/models/retinaface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/Pytorch_Retinaface/models/retinaface.py -------------------------------------------------------------------------------- /src/RCN/RCN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/RCN/RCN.ipynb -------------------------------------------------------------------------------- /src/RCN/dataset_organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/RCN/dataset_organizer.py -------------------------------------------------------------------------------- /src/assets/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/assets/demo1.gif -------------------------------------------------------------------------------- /src/assets/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/assets/demo2.gif -------------------------------------------------------------------------------- /src/assets/hmdb51_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/assets/hmdb51_results.png -------------------------------------------------------------------------------- /src/assets/ucf101_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/assets/ucf101_results.png -------------------------------------------------------------------------------- /src/dataloaders/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/dataloaders/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /src/dataloaders/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/dataloaders/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /src/dataloaders/__pycache__/mypath.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/dataloaders/__pycache__/mypath.cpython-38.pyc -------------------------------------------------------------------------------- /src/dataloaders/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/dataloaders/dataset.py -------------------------------------------------------------------------------- /src/dataloaders/hmdb_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/dataloaders/hmdb_labels.txt -------------------------------------------------------------------------------- /src/dataloaders/ucf_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/dataloaders/ucf_labels.txt -------------------------------------------------------------------------------- /src/mypath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/mypath.py -------------------------------------------------------------------------------- /src/network/C3D_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/network/C3D_model.py -------------------------------------------------------------------------------- /src/network/I3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/network/I3D.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oidelima/Deepfake-Detection/HEAD/src/train.py --------------------------------------------------------------------------------