├── .gitignore ├── LICENSE ├── README.md ├── SFT_Abstract.png ├── backbones ├── fstmatching.py ├── model.py ├── resnet.py └── se_module.py ├── checkpoints └── .gitignore ├── configs └── res18.cfg ├── data └── .gitignore ├── dataset ├── augmentor.py └── deepfake_dataset.py ├── demo.py ├── images └── .gitignore ├── lib ├── __init__.py ├── data_preprocess.py ├── extract_frames_ldm_ff++.py ├── quantitive_indicators.py ├── shapley.py ├── util.py └── visualization.py ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/README.md -------------------------------------------------------------------------------- /SFT_Abstract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/SFT_Abstract.png -------------------------------------------------------------------------------- /backbones/fstmatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/backbones/fstmatching.py -------------------------------------------------------------------------------- /backbones/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/backbones/model.py -------------------------------------------------------------------------------- /backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/backbones/resnet.py -------------------------------------------------------------------------------- /backbones/se_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/backbones/se_module.py -------------------------------------------------------------------------------- /checkpoints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/checkpoints/.gitignore -------------------------------------------------------------------------------- /configs/res18.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/configs/res18.cfg -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/data/.gitignore -------------------------------------------------------------------------------- /dataset/augmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/dataset/augmentor.py -------------------------------------------------------------------------------- /dataset/deepfake_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/dataset/deepfake_dataset.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/demo.py -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/images/.gitignore -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/lib/data_preprocess.py -------------------------------------------------------------------------------- /lib/extract_frames_ldm_ff++.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/lib/extract_frames_ldm_ff++.py -------------------------------------------------------------------------------- /lib/quantitive_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/lib/quantitive_indicators.py -------------------------------------------------------------------------------- /lib/shapley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/lib/shapley.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/lib/util.py -------------------------------------------------------------------------------- /lib/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/lib/visualization.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megvii-research/FST-Matching/HEAD/train.py --------------------------------------------------------------------------------