├── .gitignore ├── assets ├── demo.png └── teaser.png ├── configs ├── base.yaml ├── clip │ └── L14 │ │ ├── evl.yaml │ │ ├── ffg.yaml │ │ ├── fulltune.yaml │ │ ├── linear.yaml │ │ ├── svl.yaml │ │ └── vpt.yaml ├── data.yaml ├── inference.yaml ├── logger.yaml ├── loo │ ├── DF.yaml │ ├── F2F.yaml │ ├── FS.yaml │ └── NT.yaml ├── robustness │ ├── BW(1).yaml │ ├── BW(2).yaml │ ├── BW(3).yaml │ ├── BW(4).yaml │ ├── BW(5).yaml │ ├── CC(1).yaml │ ├── CC(2).yaml │ ├── CC(3).yaml │ ├── CC(4).yaml │ ├── CC(5).yaml │ ├── CS(1).yaml │ ├── CS(2).yaml │ ├── CS(3).yaml │ ├── CS(4).yaml │ ├── CS(5).yaml │ ├── GB(1).yaml │ ├── GB(2).yaml │ ├── GB(3).yaml │ ├── GB(4).yaml │ ├── GB(5).yaml │ ├── GNC(1).yaml │ ├── GNC(2).yaml │ ├── GNC(3).yaml │ ├── GNC(4).yaml │ ├── GNC(5).yaml │ ├── JPEG(1).yaml │ ├── JPEG(2).yaml │ ├── JPEG(3).yaml │ ├── JPEG(4).yaml │ ├── JPEG(5).yaml │ ├── VC(1).yaml │ ├── VC(2).yaml │ ├── VC(3).yaml │ ├── VC(4).yaml │ └── VC(5).yaml ├── scenario │ ├── LOO │ │ ├── DF.yaml │ │ ├── F2F.yaml │ │ ├── FS.yaml │ │ └── NT.yaml │ ├── compression │ │ ├── c40.yaml │ │ └── raw.yaml │ ├── partial │ │ ├── 10.yaml │ │ ├── 25.yaml │ │ ├── 50.yaml │ │ └── 75.yaml │ └── robust │ │ └── robust.yaml └── test.yaml ├── demo.py ├── environment.yml ├── inference.py ├── main.py ├── misc ├── 20words_mean_face.npy └── L14_real_semantic_patches_v4_2000.pickle ├── readme.md ├── resources └── videos │ ├── 000.mp4 │ └── 000_003.mp4 ├── scripts ├── ablation │ ├── ffg.sh │ ├── focal.sh │ ├── s_branch.sh │ └── t_branch.sh ├── base.sh ├── loo │ ├── DF.sh │ ├── F2F.sh │ ├── FS.sh │ └── NT.sh ├── model │ ├── evl_l14.sh │ ├── ffg_l14.sh │ ├── fulltune_l14.sh │ ├── linear_l14.sh │ ├── svl_l14.sh │ ├── vpt_deep_l14.sh │ └── vpt_shallow_l14.sh ├── partial │ ├── 10.sh │ ├── 25.sh │ ├── 50.sh │ └── 75.sh ├── parts │ ├── no_eyes.sh │ ├── no_lips.sh │ ├── no_nose.sh │ └── no_skin.sh ├── robust │ └── robust.sh └── tools │ ├── cli_check.py │ ├── create-robust-configs.sh │ └── inference-robust.sh └── src ├── clip ├── __init__.py ├── bpe_simple_vocab_16e6.txt.gz ├── clip.py ├── model.py ├── model_syno.py └── simple_tokenizer.py ├── dataset ├── base.py ├── cdf.py ├── dfdc.py ├── dfo.py ├── ffpp.py ├── fsh.py ├── heygen.py ├── higen.py └── wdf.py ├── example.py ├── model ├── base.py └── clip │ ├── __init__.py │ ├── evl.py │ ├── finetune.py │ ├── linear.py │ ├── svl.py │ └── vpt.py ├── preprocess ├── crop_main_face.py ├── fetch_landmark_bbox.py ├── robustness │ ├── distortions.py │ ├── phase1_apply_all_to_videos.py │ ├── phase1_check.py │ ├── phase2_face_crop_all_videos.py │ └── readme.md └── show_frame_landmark_bbox.py └── utility ├── builtin.py ├── loss.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/.gitignore -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /configs/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/base.yaml -------------------------------------------------------------------------------- /configs/clip/L14/evl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/clip/L14/evl.yaml -------------------------------------------------------------------------------- /configs/clip/L14/ffg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/clip/L14/ffg.yaml -------------------------------------------------------------------------------- /configs/clip/L14/fulltune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/clip/L14/fulltune.yaml -------------------------------------------------------------------------------- /configs/clip/L14/linear.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/clip/L14/linear.yaml -------------------------------------------------------------------------------- /configs/clip/L14/svl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/clip/L14/svl.yaml -------------------------------------------------------------------------------- /configs/clip/L14/vpt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/clip/L14/vpt.yaml -------------------------------------------------------------------------------- /configs/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/data.yaml -------------------------------------------------------------------------------- /configs/inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/inference.yaml -------------------------------------------------------------------------------- /configs/logger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/logger.yaml -------------------------------------------------------------------------------- /configs/loo/DF.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/loo/DF.yaml -------------------------------------------------------------------------------- /configs/loo/F2F.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/loo/F2F.yaml -------------------------------------------------------------------------------- /configs/loo/FS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/loo/FS.yaml -------------------------------------------------------------------------------- /configs/loo/NT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/loo/NT.yaml -------------------------------------------------------------------------------- /configs/robustness/BW(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/BW(1).yaml -------------------------------------------------------------------------------- /configs/robustness/BW(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/BW(2).yaml -------------------------------------------------------------------------------- /configs/robustness/BW(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/BW(3).yaml -------------------------------------------------------------------------------- /configs/robustness/BW(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/BW(4).yaml -------------------------------------------------------------------------------- /configs/robustness/BW(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/BW(5).yaml -------------------------------------------------------------------------------- /configs/robustness/CC(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CC(1).yaml -------------------------------------------------------------------------------- /configs/robustness/CC(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CC(2).yaml -------------------------------------------------------------------------------- /configs/robustness/CC(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CC(3).yaml -------------------------------------------------------------------------------- /configs/robustness/CC(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CC(4).yaml -------------------------------------------------------------------------------- /configs/robustness/CC(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CC(5).yaml -------------------------------------------------------------------------------- /configs/robustness/CS(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CS(1).yaml -------------------------------------------------------------------------------- /configs/robustness/CS(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CS(2).yaml -------------------------------------------------------------------------------- /configs/robustness/CS(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CS(3).yaml -------------------------------------------------------------------------------- /configs/robustness/CS(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CS(4).yaml -------------------------------------------------------------------------------- /configs/robustness/CS(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/CS(5).yaml -------------------------------------------------------------------------------- /configs/robustness/GB(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GB(1).yaml -------------------------------------------------------------------------------- /configs/robustness/GB(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GB(2).yaml -------------------------------------------------------------------------------- /configs/robustness/GB(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GB(3).yaml -------------------------------------------------------------------------------- /configs/robustness/GB(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GB(4).yaml -------------------------------------------------------------------------------- /configs/robustness/GB(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GB(5).yaml -------------------------------------------------------------------------------- /configs/robustness/GNC(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GNC(1).yaml -------------------------------------------------------------------------------- /configs/robustness/GNC(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GNC(2).yaml -------------------------------------------------------------------------------- /configs/robustness/GNC(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GNC(3).yaml -------------------------------------------------------------------------------- /configs/robustness/GNC(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GNC(4).yaml -------------------------------------------------------------------------------- /configs/robustness/GNC(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/GNC(5).yaml -------------------------------------------------------------------------------- /configs/robustness/JPEG(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/JPEG(1).yaml -------------------------------------------------------------------------------- /configs/robustness/JPEG(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/JPEG(2).yaml -------------------------------------------------------------------------------- /configs/robustness/JPEG(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/JPEG(3).yaml -------------------------------------------------------------------------------- /configs/robustness/JPEG(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/JPEG(4).yaml -------------------------------------------------------------------------------- /configs/robustness/JPEG(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/JPEG(5).yaml -------------------------------------------------------------------------------- /configs/robustness/VC(1).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/VC(1).yaml -------------------------------------------------------------------------------- /configs/robustness/VC(2).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/VC(2).yaml -------------------------------------------------------------------------------- /configs/robustness/VC(3).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/VC(3).yaml -------------------------------------------------------------------------------- /configs/robustness/VC(4).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/VC(4).yaml -------------------------------------------------------------------------------- /configs/robustness/VC(5).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/robustness/VC(5).yaml -------------------------------------------------------------------------------- /configs/scenario/LOO/DF.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/LOO/DF.yaml -------------------------------------------------------------------------------- /configs/scenario/LOO/F2F.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/LOO/F2F.yaml -------------------------------------------------------------------------------- /configs/scenario/LOO/FS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/LOO/FS.yaml -------------------------------------------------------------------------------- /configs/scenario/LOO/NT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/LOO/NT.yaml -------------------------------------------------------------------------------- /configs/scenario/compression/c40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/compression/c40.yaml -------------------------------------------------------------------------------- /configs/scenario/compression/raw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/compression/raw.yaml -------------------------------------------------------------------------------- /configs/scenario/partial/10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/partial/10.yaml -------------------------------------------------------------------------------- /configs/scenario/partial/25.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/partial/25.yaml -------------------------------------------------------------------------------- /configs/scenario/partial/50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/partial/50.yaml -------------------------------------------------------------------------------- /configs/scenario/partial/75.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/partial/75.yaml -------------------------------------------------------------------------------- /configs/scenario/robust/robust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/scenario/robust/robust.yaml -------------------------------------------------------------------------------- /configs/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/configs/test.yaml -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/demo.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/environment.yml -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/inference.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/main.py -------------------------------------------------------------------------------- /misc/20words_mean_face.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/misc/20words_mean_face.npy -------------------------------------------------------------------------------- /misc/L14_real_semantic_patches_v4_2000.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/misc/L14_real_semantic_patches_v4_2000.pickle -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/readme.md -------------------------------------------------------------------------------- /resources/videos/000.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/resources/videos/000.mp4 -------------------------------------------------------------------------------- /resources/videos/000_003.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/resources/videos/000_003.mp4 -------------------------------------------------------------------------------- /scripts/ablation/ffg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/ablation/ffg.sh -------------------------------------------------------------------------------- /scripts/ablation/focal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/ablation/focal.sh -------------------------------------------------------------------------------- /scripts/ablation/s_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/ablation/s_branch.sh -------------------------------------------------------------------------------- /scripts/ablation/t_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/ablation/t_branch.sh -------------------------------------------------------------------------------- /scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/base.sh -------------------------------------------------------------------------------- /scripts/loo/DF.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/loo/DF.sh -------------------------------------------------------------------------------- /scripts/loo/F2F.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/loo/F2F.sh -------------------------------------------------------------------------------- /scripts/loo/FS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/loo/FS.sh -------------------------------------------------------------------------------- /scripts/loo/NT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/loo/NT.sh -------------------------------------------------------------------------------- /scripts/model/evl_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/evl_l14.sh -------------------------------------------------------------------------------- /scripts/model/ffg_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/ffg_l14.sh -------------------------------------------------------------------------------- /scripts/model/fulltune_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/fulltune_l14.sh -------------------------------------------------------------------------------- /scripts/model/linear_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/linear_l14.sh -------------------------------------------------------------------------------- /scripts/model/svl_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/svl_l14.sh -------------------------------------------------------------------------------- /scripts/model/vpt_deep_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/vpt_deep_l14.sh -------------------------------------------------------------------------------- /scripts/model/vpt_shallow_l14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/model/vpt_shallow_l14.sh -------------------------------------------------------------------------------- /scripts/partial/10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/partial/10.sh -------------------------------------------------------------------------------- /scripts/partial/25.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/partial/25.sh -------------------------------------------------------------------------------- /scripts/partial/50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/partial/50.sh -------------------------------------------------------------------------------- /scripts/partial/75.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/partial/75.sh -------------------------------------------------------------------------------- /scripts/parts/no_eyes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/parts/no_eyes.sh -------------------------------------------------------------------------------- /scripts/parts/no_lips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/parts/no_lips.sh -------------------------------------------------------------------------------- /scripts/parts/no_nose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/parts/no_nose.sh -------------------------------------------------------------------------------- /scripts/parts/no_skin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/parts/no_skin.sh -------------------------------------------------------------------------------- /scripts/robust/robust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/robust/robust.sh -------------------------------------------------------------------------------- /scripts/tools/cli_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/tools/cli_check.py -------------------------------------------------------------------------------- /scripts/tools/create-robust-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/tools/create-robust-configs.sh -------------------------------------------------------------------------------- /scripts/tools/inference-robust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/scripts/tools/inference-robust.sh -------------------------------------------------------------------------------- /src/clip/__init__.py: -------------------------------------------------------------------------------- 1 | from .clip import * 2 | -------------------------------------------------------------------------------- /src/clip/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/clip/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /src/clip/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/clip/clip.py -------------------------------------------------------------------------------- /src/clip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/clip/model.py -------------------------------------------------------------------------------- /src/clip/model_syno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/clip/model_syno.py -------------------------------------------------------------------------------- /src/clip/simple_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/clip/simple_tokenizer.py -------------------------------------------------------------------------------- /src/dataset/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/base.py -------------------------------------------------------------------------------- /src/dataset/cdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/cdf.py -------------------------------------------------------------------------------- /src/dataset/dfdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/dfdc.py -------------------------------------------------------------------------------- /src/dataset/dfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/dfo.py -------------------------------------------------------------------------------- /src/dataset/ffpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/ffpp.py -------------------------------------------------------------------------------- /src/dataset/fsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/fsh.py -------------------------------------------------------------------------------- /src/dataset/heygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/heygen.py -------------------------------------------------------------------------------- /src/dataset/higen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/higen.py -------------------------------------------------------------------------------- /src/dataset/wdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/dataset/wdf.py -------------------------------------------------------------------------------- /src/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/example.py -------------------------------------------------------------------------------- /src/model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/base.py -------------------------------------------------------------------------------- /src/model/clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/clip/__init__.py -------------------------------------------------------------------------------- /src/model/clip/evl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/clip/evl.py -------------------------------------------------------------------------------- /src/model/clip/finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/clip/finetune.py -------------------------------------------------------------------------------- /src/model/clip/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/clip/linear.py -------------------------------------------------------------------------------- /src/model/clip/svl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/clip/svl.py -------------------------------------------------------------------------------- /src/model/clip/vpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/model/clip/vpt.py -------------------------------------------------------------------------------- /src/preprocess/crop_main_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/crop_main_face.py -------------------------------------------------------------------------------- /src/preprocess/fetch_landmark_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/fetch_landmark_bbox.py -------------------------------------------------------------------------------- /src/preprocess/robustness/distortions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/robustness/distortions.py -------------------------------------------------------------------------------- /src/preprocess/robustness/phase1_apply_all_to_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/robustness/phase1_apply_all_to_videos.py -------------------------------------------------------------------------------- /src/preprocess/robustness/phase1_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/robustness/phase1_check.py -------------------------------------------------------------------------------- /src/preprocess/robustness/phase2_face_crop_all_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/robustness/phase2_face_crop_all_videos.py -------------------------------------------------------------------------------- /src/preprocess/robustness/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/robustness/readme.md -------------------------------------------------------------------------------- /src/preprocess/show_frame_landmark_bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/preprocess/show_frame_landmark_bbox.py -------------------------------------------------------------------------------- /src/utility/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/utility/builtin.py -------------------------------------------------------------------------------- /src/utility/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/utility/loss.py -------------------------------------------------------------------------------- /src/utility/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiiu-lab/DFD-FCG/HEAD/src/utility/visualize.py --------------------------------------------------------------------------------