├── .gitignore ├── FLAMEModel ├── FLAME.py ├── __init__.py ├── config.py └── flame_masks.py ├── README.md ├── assets ├── demo │ ├── audio1.wav │ └── audio2.wav ├── release │ └── mbp_weights_win03_weight05.zip └── teaser.png ├── cfg ├── generalized_model │ └── imitator_gen_ab_mbp_vel10.yaml └── style_adaption │ ├── subj0024_stg01_04seq.yaml │ └── subj0024_stg02_04seq.yaml ├── download_asset.bat ├── download_asset.sh ├── environment.yml ├── imitator ├── data │ ├── data_loader.py │ ├── data_loader_actor_wise_custom_init.py │ └── debug_data_loader.py ├── models │ ├── nn_model.py │ └── wav2vec.py ├── pl_style_trainer.py ├── pl_trainer.py ├── test │ ├── data_cfg.yaml │ ├── test_model_external_audio.py │ └── test_model_voca.py └── utils │ ├── custom_callbacks.py │ ├── init_from_config.py │ ├── losses.py │ ├── mbp_loss.py │ ├── render_helper.py │ ├── ringnet_lip_static_embedding.py │ └── util_pyrenderer.py ├── install.bat ├── install.sh └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/.gitignore -------------------------------------------------------------------------------- /FLAMEModel/FLAME.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/FLAMEModel/FLAME.py -------------------------------------------------------------------------------- /FLAMEModel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FLAMEModel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/FLAMEModel/config.py -------------------------------------------------------------------------------- /FLAMEModel/flame_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/FLAMEModel/flame_masks.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo/audio1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/assets/demo/audio1.wav -------------------------------------------------------------------------------- /assets/demo/audio2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/assets/demo/audio2.wav -------------------------------------------------------------------------------- /assets/release/mbp_weights_win03_weight05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/assets/release/mbp_weights_win03_weight05.zip -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /cfg/generalized_model/imitator_gen_ab_mbp_vel10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/cfg/generalized_model/imitator_gen_ab_mbp_vel10.yaml -------------------------------------------------------------------------------- /cfg/style_adaption/subj0024_stg01_04seq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/cfg/style_adaption/subj0024_stg01_04seq.yaml -------------------------------------------------------------------------------- /cfg/style_adaption/subj0024_stg02_04seq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/cfg/style_adaption/subj0024_stg02_04seq.yaml -------------------------------------------------------------------------------- /download_asset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/download_asset.bat -------------------------------------------------------------------------------- /download_asset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/download_asset.sh -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/environment.yml -------------------------------------------------------------------------------- /imitator/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/data/data_loader.py -------------------------------------------------------------------------------- /imitator/data/data_loader_actor_wise_custom_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/data/data_loader_actor_wise_custom_init.py -------------------------------------------------------------------------------- /imitator/data/debug_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/data/debug_data_loader.py -------------------------------------------------------------------------------- /imitator/models/nn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/models/nn_model.py -------------------------------------------------------------------------------- /imitator/models/wav2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/models/wav2vec.py -------------------------------------------------------------------------------- /imitator/pl_style_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/pl_style_trainer.py -------------------------------------------------------------------------------- /imitator/pl_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/pl_trainer.py -------------------------------------------------------------------------------- /imitator/test/data_cfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/test/data_cfg.yaml -------------------------------------------------------------------------------- /imitator/test/test_model_external_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/test/test_model_external_audio.py -------------------------------------------------------------------------------- /imitator/test/test_model_voca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/test/test_model_voca.py -------------------------------------------------------------------------------- /imitator/utils/custom_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/custom_callbacks.py -------------------------------------------------------------------------------- /imitator/utils/init_from_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/init_from_config.py -------------------------------------------------------------------------------- /imitator/utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/losses.py -------------------------------------------------------------------------------- /imitator/utils/mbp_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/mbp_loss.py -------------------------------------------------------------------------------- /imitator/utils/render_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/render_helper.py -------------------------------------------------------------------------------- /imitator/utils/ringnet_lip_static_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/ringnet_lip_static_embedding.py -------------------------------------------------------------------------------- /imitator/utils/util_pyrenderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/imitator/utils/util_pyrenderer.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/install.bat -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/install.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bala1144/Imitator/HEAD/main.py --------------------------------------------------------------------------------