├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── animate_face.py ├── assets ├── example_sentence.wav ├── eye_keypoints.txt ├── face_mean.npy ├── face_std.npy ├── face_template.obj ├── forehead_mask.txt ├── neck_mask.txt ├── weighted_eye_mask.txt └── weighted_mouth_mask.txt ├── models ├── context_model.py ├── encoders.py └── vertex_unet.py ├── supplemental_video.png ├── supplementary_material.pdf ├── training ├── dataset.py ├── forwarder.py ├── train_step1.py ├── train_step2.py └── trainer.py └── utils ├── helpers.py ├── multiface2meshtalk.py └── renderer.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/README.md -------------------------------------------------------------------------------- /animate_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/animate_face.py -------------------------------------------------------------------------------- /assets/example_sentence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/example_sentence.wav -------------------------------------------------------------------------------- /assets/eye_keypoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/eye_keypoints.txt -------------------------------------------------------------------------------- /assets/face_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/face_mean.npy -------------------------------------------------------------------------------- /assets/face_std.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/face_std.npy -------------------------------------------------------------------------------- /assets/face_template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/face_template.obj -------------------------------------------------------------------------------- /assets/forehead_mask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/forehead_mask.txt -------------------------------------------------------------------------------- /assets/neck_mask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/neck_mask.txt -------------------------------------------------------------------------------- /assets/weighted_eye_mask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/weighted_eye_mask.txt -------------------------------------------------------------------------------- /assets/weighted_mouth_mask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/assets/weighted_mouth_mask.txt -------------------------------------------------------------------------------- /models/context_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/models/context_model.py -------------------------------------------------------------------------------- /models/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/models/encoders.py -------------------------------------------------------------------------------- /models/vertex_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/models/vertex_unet.py -------------------------------------------------------------------------------- /supplemental_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/supplemental_video.png -------------------------------------------------------------------------------- /supplementary_material.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/supplementary_material.pdf -------------------------------------------------------------------------------- /training/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/training/dataset.py -------------------------------------------------------------------------------- /training/forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/training/forwarder.py -------------------------------------------------------------------------------- /training/train_step1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/training/train_step1.py -------------------------------------------------------------------------------- /training/train_step2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/training/train_step2.py -------------------------------------------------------------------------------- /training/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/training/trainer.py -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/utils/helpers.py -------------------------------------------------------------------------------- /utils/multiface2meshtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/utils/multiface2meshtalk.py -------------------------------------------------------------------------------- /utils/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/meshtalk/HEAD/utils/renderer.py --------------------------------------------------------------------------------