gitextract_hwq25lj6/ ├── GFPGAN.py ├── Gen_hyperlipsbase_videos.py ├── HYPERLIPS.py ├── Inference_hyperlips.py ├── README.md ├── Train_data/ │ └── video_clips/ │ └── MEAD/ │ └── readme.txt ├── Train_hyperlipsBase.py ├── Train_hyperlipsHR.py ├── audio.py ├── checkpoint ├── checkpoints/ │ └── readme.txt ├── color_syncnet_trainv3.py ├── conv.py ├── datasets/ │ └── MEAD/ │ └── readme.txt ├── environment.yml ├── face_detection/ │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── detection/ │ │ ├── __init__.py │ │ ├── core.py │ │ └── sfd/ │ │ ├── __init__.py │ │ ├── bbox.py │ │ ├── detect.py │ │ ├── net_s3fd.py │ │ ├── s3fd.pth │ │ └── sfd_detector.py │ ├── models.py │ └── utils.py ├── face_parsing/ │ ├── README.md │ ├── __init__.py │ ├── model.py │ ├── resnet.py │ └── swap.py ├── filelists/ │ ├── train.txt │ └── val.txt ├── filelists_lrs2/ │ ├── README.md │ ├── test.txt │ ├── train.txt │ └── val.txt ├── filelists_mead/ │ ├── README.md │ ├── test.txt │ ├── train.txt │ └── val.txt ├── gfpgan/ │ ├── gfpganv1_clean_arch.py │ └── stylegan2_clean_arch.py ├── hparams.py ├── hparams_Base.py ├── hparams_HR.py ├── inference.py ├── models/ │ ├── __init__.py │ ├── audio_v.py │ ├── conv.py │ ├── decoder.py │ ├── deep_guided_filter.py │ ├── gfpganv1_clean_arch.py │ ├── guided_filter_pytorch/ │ │ ├── __init__.py │ │ ├── box_filter.py │ │ └── guided_filter.py │ ├── hyperlayers.py │ ├── hypernetwork.py │ ├── layers.py │ ├── lraspp.py │ ├── memory.py │ ├── mobilenetv3.py │ ├── model.py │ ├── model_hyperlips.py │ ├── resnet.py │ └── syncnet.py ├── preprocess.py └── requirements.txt