├── LICENSE ├── README.md ├── audio ├── audio_utils.py └── hparams.py ├── checkpoints └── ReadMe.md ├── face_detection ├── README.md ├── __init__.py ├── api.py ├── detection │ ├── __init__.py │ ├── core.py │ └── sfd │ │ ├── __init__.py │ │ ├── bbox.py │ │ ├── detect.py │ │ ├── net_s3fd.py │ │ └── sfd_detector.py ├── models.py └── utils.py ├── inference.py ├── lipsync ├── audio.py ├── checkpoints │ ├── ReadMe.md │ └── taylor.jpg ├── hparams.py ├── inference.py ├── models.py └── train_student.py ├── models.py ├── preprocess.py ├── requirements.txt ├── scripts ├── 1.gif ├── data_loader.py └── plot_sepc.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/README.md -------------------------------------------------------------------------------- /audio/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/audio/audio_utils.py -------------------------------------------------------------------------------- /audio/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/audio/hparams.py -------------------------------------------------------------------------------- /checkpoints/ReadMe.md: -------------------------------------------------------------------------------- 1 | Place all your checkpoints (.pt/.pth files) here. 2 | -------------------------------------------------------------------------------- /face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/README.md -------------------------------------------------------------------------------- /face_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/__init__.py -------------------------------------------------------------------------------- /face_detection/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/api.py -------------------------------------------------------------------------------- /face_detection/detection/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import FaceDetector -------------------------------------------------------------------------------- /face_detection/detection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/detection/core.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/detection/sfd/__init__.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/detection/sfd/bbox.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/detection/sfd/detect.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/net_s3fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/detection/sfd/net_s3fd.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/sfd_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/detection/sfd/sfd_detector.py -------------------------------------------------------------------------------- /face_detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/models.py -------------------------------------------------------------------------------- /face_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/face_detection/utils.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/inference.py -------------------------------------------------------------------------------- /lipsync/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/lipsync/audio.py -------------------------------------------------------------------------------- /lipsync/checkpoints/ReadMe.md: -------------------------------------------------------------------------------- 1 | Place all your checkpoints (.pth files) here. 2 | -------------------------------------------------------------------------------- /lipsync/checkpoints/taylor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/lipsync/checkpoints/taylor.jpg -------------------------------------------------------------------------------- /lipsync/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/lipsync/hparams.py -------------------------------------------------------------------------------- /lipsync/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/lipsync/inference.py -------------------------------------------------------------------------------- /lipsync/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/lipsync/models.py -------------------------------------------------------------------------------- /lipsync/train_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/lipsync/train_student.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/models.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/scripts/1.gif -------------------------------------------------------------------------------- /scripts/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/scripts/data_loader.py -------------------------------------------------------------------------------- /scripts/plot_sepc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/scripts/plot_sepc.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sindhu-Hegde/pseudo-visual-speech-denoising/HEAD/train.py --------------------------------------------------------------------------------