gitextract_uz8rj1lb/ ├── .gitmodules ├── DatasetHelper.md ├── LICENSE.md ├── README.md ├── config/ │ ├── face.yaml │ └── face_demo.yaml ├── config.py ├── data/ │ ├── __init__.py │ ├── image_dataset.py │ ├── vox_dataset.py │ └── vox_video_dataset.py ├── demo_images/ │ └── expression.mat ├── generators/ │ ├── base_function.py │ └── face_model.py ├── inference.py ├── intuitive_control.py ├── loss/ │ └── perceptual.py ├── requirements.txt ├── scripts/ │ ├── coeff_detector.py │ ├── download_demo_dataset.sh │ ├── download_weights.sh │ ├── extract_kp_videos.py │ ├── face_recon_images.py │ ├── face_recon_videos.py │ ├── inference_options.py │ └── prepare_vox_lmdb.py ├── third_part/ │ └── PerceptualSimilarity/ │ ├── models/ │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── dist_model.py │ │ ├── models.py │ │ ├── networks_basic.py │ │ └── pretrained_networks.py │ ├── util/ │ │ ├── __init__.py │ │ ├── html.py │ │ ├── util.py │ │ └── visualizer.py │ └── weights/ │ ├── v0.0/ │ │ ├── alex.pth │ │ ├── squeeze.pth │ │ └── vgg.pth │ └── v0.1/ │ ├── alex.pth │ ├── squeeze.pth │ └── vgg.pth ├── train.py ├── trainers/ │ ├── __init__.py │ ├── base.py │ └── face_trainer.py └── util/ ├── cudnn.py ├── distributed.py ├── flow_util.py ├── init_weight.py ├── io.py ├── logging.py ├── lpips.py ├── meters.py ├── misc.py └── trainer.py