├── .gitignore ├── LICENSE ├── Notice.txt ├── README.md ├── README_zh.md ├── assets ├── audio │ ├── 2.WAV │ ├── 3.WAV │ └── 4.WAV ├── image │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── src1.png │ ├── src2.png │ ├── src3.png │ └── src4.png ├── material │ ├── demo.png │ ├── logo.png │ ├── method.png │ └── teaser.png └── test.csv ├── hymm_gradio ├── flask_audio.py ├── gradio_audio.py └── tool_for_end2end.py ├── hymm_sp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── config.cpython-310.pyc │ ├── constants.cpython-310.pyc │ ├── helpers.cpython-310.pyc │ ├── inference.cpython-310.pyc │ └── sample_inference_audio.cpython-310.pyc ├── config.py ├── constants.py ├── data_kits │ ├── __pycache__ │ │ ├── audio_dataset.cpython-310.pyc │ │ ├── audio_preprocessor.cpython-310.pyc │ │ ├── data_tools.cpython-310.pyc │ │ └── ffmpeg_utils.cpython-310.pyc │ ├── audio_dataset.py │ ├── audio_preprocessor.py │ ├── data_tools.py │ └── face_align │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── align.cpython-310.pyc │ │ └── detface.cpython-310.pyc │ │ ├── align.py │ │ └── detface.py ├── diffusion │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-310.pyc │ ├── pipelines │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── pipeline_hunyuan_video_audio.cpython-310.pyc │ │ └── pipeline_hunyuan_video_audio.py │ └── schedulers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── scheduling_flow_match_discrete.cpython-310.pyc │ │ └── scheduling_flow_match_discrete.py ├── helpers.py ├── inference.py ├── modules │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── activation_layers.cpython-310.pyc │ │ ├── attn_layers.cpython-310.pyc │ │ ├── audio_adapters.cpython-310.pyc │ │ ├── embed_layers.cpython-310.pyc │ │ ├── fp8_optimization.cpython-310.pyc │ │ ├── mlp_layers.cpython-310.pyc │ │ ├── models_audio.cpython-310.pyc │ │ ├── modulate_layers.cpython-310.pyc │ │ ├── norm_layers.cpython-310.pyc │ │ ├── parallel_states.cpython-310.pyc │ │ ├── posemb_layers.cpython-310.pyc │ │ └── token_refiner.cpython-310.pyc │ ├── activation_layers.py │ ├── attn_layers.py │ ├── audio_adapters.py │ ├── embed_layers.py │ ├── fp8_optimization.py │ ├── mlp_layers.py │ ├── models_audio.py │ ├── modulate_layers.py │ ├── norm_layers.py │ ├── parallel_states.py │ ├── posemb_layers.py │ └── token_refiner.py ├── sample_batch.py ├── sample_gpu_poor.py ├── sample_inference_audio.py ├── text_encoder │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-310.pyc └── vae │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── autoencoder_kl_causal_3d.cpython-310.pyc │ ├── unet_causal_3d_blocks.cpython-310.pyc │ └── vae.cpython-310.pyc │ ├── autoencoder_kl_causal_3d.py │ ├── unet_causal_3d_blocks.py │ └── vae.py ├── requirements.txt ├── scripts ├── run_gradio.sh ├── run_sample_batch_sp.sh ├── run_single_audio.sh └── run_single_poor.sh └── weights └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | temp/ 3 | .gradio/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/LICENSE -------------------------------------------------------------------------------- /Notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/Notice.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/audio/2.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/audio/2.WAV -------------------------------------------------------------------------------- /assets/audio/3.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/audio/3.WAV -------------------------------------------------------------------------------- /assets/audio/4.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/audio/4.WAV -------------------------------------------------------------------------------- /assets/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/1.png -------------------------------------------------------------------------------- /assets/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/2.png -------------------------------------------------------------------------------- /assets/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/3.png -------------------------------------------------------------------------------- /assets/image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/4.png -------------------------------------------------------------------------------- /assets/image/src1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/src1.png -------------------------------------------------------------------------------- /assets/image/src2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/src2.png -------------------------------------------------------------------------------- /assets/image/src3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/src3.png -------------------------------------------------------------------------------- /assets/image/src4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/image/src4.png -------------------------------------------------------------------------------- /assets/material/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/material/demo.png -------------------------------------------------------------------------------- /assets/material/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/material/logo.png -------------------------------------------------------------------------------- /assets/material/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/material/method.png -------------------------------------------------------------------------------- /assets/material/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/material/teaser.png -------------------------------------------------------------------------------- /assets/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/assets/test.csv -------------------------------------------------------------------------------- /hymm_gradio/flask_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_gradio/flask_audio.py -------------------------------------------------------------------------------- /hymm_gradio/gradio_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_gradio/gradio_audio.py -------------------------------------------------------------------------------- /hymm_gradio/tool_for_end2end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_gradio/tool_for_end2end.py -------------------------------------------------------------------------------- /hymm_sp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hymm_sp/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/__pycache__/constants.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/__pycache__/constants.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/__pycache__/helpers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/__pycache__/helpers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/__pycache__/inference.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/__pycache__/inference.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/__pycache__/sample_inference_audio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/__pycache__/sample_inference_audio.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/config.py -------------------------------------------------------------------------------- /hymm_sp/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/constants.py -------------------------------------------------------------------------------- /hymm_sp/data_kits/__pycache__/audio_dataset.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/__pycache__/audio_dataset.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/__pycache__/audio_preprocessor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/__pycache__/audio_preprocessor.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/__pycache__/data_tools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/__pycache__/data_tools.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/__pycache__/ffmpeg_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/__pycache__/ffmpeg_utils.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/audio_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/audio_dataset.py -------------------------------------------------------------------------------- /hymm_sp/data_kits/audio_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/audio_preprocessor.py -------------------------------------------------------------------------------- /hymm_sp/data_kits/data_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/data_tools.py -------------------------------------------------------------------------------- /hymm_sp/data_kits/face_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/face_align/__init__.py -------------------------------------------------------------------------------- /hymm_sp/data_kits/face_align/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/face_align/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/face_align/__pycache__/align.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/face_align/__pycache__/align.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/face_align/__pycache__/detface.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/face_align/__pycache__/detface.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/data_kits/face_align/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/face_align/align.py -------------------------------------------------------------------------------- /hymm_sp/data_kits/face_align/detface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/data_kits/face_align/detface.py -------------------------------------------------------------------------------- /hymm_sp/diffusion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/__init__.py -------------------------------------------------------------------------------- /hymm_sp/diffusion/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/diffusion/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/pipelines/__init__.py -------------------------------------------------------------------------------- /hymm_sp/diffusion/pipelines/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/pipelines/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/diffusion/pipelines/__pycache__/pipeline_hunyuan_video_audio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/pipelines/__pycache__/pipeline_hunyuan_video_audio.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/diffusion/pipelines/pipeline_hunyuan_video_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/pipelines/pipeline_hunyuan_video_audio.py -------------------------------------------------------------------------------- /hymm_sp/diffusion/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/schedulers/__init__.py -------------------------------------------------------------------------------- /hymm_sp/diffusion/schedulers/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/schedulers/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/diffusion/schedulers/__pycache__/scheduling_flow_match_discrete.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/schedulers/__pycache__/scheduling_flow_match_discrete.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/diffusion/schedulers/scheduling_flow_match_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/diffusion/schedulers/scheduling_flow_match_discrete.py -------------------------------------------------------------------------------- /hymm_sp/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/helpers.py -------------------------------------------------------------------------------- /hymm_sp/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/inference.py -------------------------------------------------------------------------------- /hymm_sp/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__init__.py -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/activation_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/activation_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/attn_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/attn_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/audio_adapters.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/audio_adapters.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/embed_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/embed_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/fp8_optimization.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/fp8_optimization.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/mlp_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/mlp_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/models_audio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/models_audio.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/modulate_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/modulate_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/norm_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/norm_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/parallel_states.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/parallel_states.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/posemb_layers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/posemb_layers.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/__pycache__/token_refiner.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/__pycache__/token_refiner.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/modules/activation_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/activation_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/attn_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/attn_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/audio_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/audio_adapters.py -------------------------------------------------------------------------------- /hymm_sp/modules/embed_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/embed_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/fp8_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/fp8_optimization.py -------------------------------------------------------------------------------- /hymm_sp/modules/mlp_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/mlp_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/models_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/models_audio.py -------------------------------------------------------------------------------- /hymm_sp/modules/modulate_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/modulate_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/norm_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/norm_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/parallel_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/parallel_states.py -------------------------------------------------------------------------------- /hymm_sp/modules/posemb_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/posemb_layers.py -------------------------------------------------------------------------------- /hymm_sp/modules/token_refiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/modules/token_refiner.py -------------------------------------------------------------------------------- /hymm_sp/sample_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/sample_batch.py -------------------------------------------------------------------------------- /hymm_sp/sample_gpu_poor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/sample_gpu_poor.py -------------------------------------------------------------------------------- /hymm_sp/sample_inference_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/sample_inference_audio.py -------------------------------------------------------------------------------- /hymm_sp/text_encoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/text_encoder/__init__.py -------------------------------------------------------------------------------- /hymm_sp/text_encoder/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/text_encoder/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/vae/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/__init__.py -------------------------------------------------------------------------------- /hymm_sp/vae/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/vae/__pycache__/autoencoder_kl_causal_3d.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/__pycache__/autoencoder_kl_causal_3d.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/vae/__pycache__/unet_causal_3d_blocks.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/__pycache__/unet_causal_3d_blocks.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/vae/__pycache__/vae.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/__pycache__/vae.cpython-310.pyc -------------------------------------------------------------------------------- /hymm_sp/vae/autoencoder_kl_causal_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/autoencoder_kl_causal_3d.py -------------------------------------------------------------------------------- /hymm_sp/vae/unet_causal_3d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/unet_causal_3d_blocks.py -------------------------------------------------------------------------------- /hymm_sp/vae/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/hymm_sp/vae/vae.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run_gradio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/scripts/run_gradio.sh -------------------------------------------------------------------------------- /scripts/run_sample_batch_sp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/scripts/run_sample_batch_sp.sh -------------------------------------------------------------------------------- /scripts/run_single_audio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/scripts/run_single_audio.sh -------------------------------------------------------------------------------- /scripts/run_single_poor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/scripts/run_single_poor.sh -------------------------------------------------------------------------------- /weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/HunyuanVideo-Avatar/HEAD/weights/README.md --------------------------------------------------------------------------------