Views
No views yet
|
Portrait Style
|
Animal Animation
|
Fast Paced Rap
|
1conda create -n flashtalk python=3.10
2conda activate flashtalkpip install torch==2.7.1 torchvision==0.22.1 --index-url https://download.pytorch.org/whl/cu128pip install -r requirements.txt1pip install ninja
2pip install flash_attn==2.8.0.post2 --no-build-isolation1# Ubuntu / Debian
2apt-get install ffmpeg
3# CentOS / RHEL
4yum install ffmpeg ffmpeg-devel1# Conda (no root required)
2conda install -c conda-forge ffmpeg==7| Model Component | Description | Link |
|---|---|---|
SoulX-FlashTalk-14B | Our 14b model | 🤗 Huggingface |
chinese-wav2vec2-base | chinese-wav2vec2-base | 🤗 Huggingface |
1# If you are in china mainland, run this first: export HF_ENDPOINT=https://hf-mirror.com
2pip install "huggingface_hub[cli]"
3huggingface-cli download Soul-AILab/SoulX-FlashTalk-14B --local-dir ./models/SoulX-FlashTalk-14B
4huggingface-cli download TencentGameMate/chinese-wav2vec2-base --local-dir ./models/chinese-wav2vec2-base1# Infer on single GPU
2# Requires more than 64G of VRAM
3bash inference_script_single_gpu.sh
4
5# Infer on multy GPUs
6# Real-time inference speed can only be supported on 8xH800 or higher graphics cards
7bash inference_script_multi_gpu.sh
@misc{shen2025soulxflashtalktechnicalreport,
title={SoulX-FlashTalk: Real-Time Infinite Streaming of Audio-Driven Avatars via Self-Correcting Bidirectional Distillation},
author={Le Shen and Qian Qiao and Tan Yu and Ke Zhou and Tianhang Yu and Yu Zhan and Zhenjie Wang and Ming Tao and Shunshun Yin and Siyuan Liu},
year={2025},
eprint={2512.23379},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2512.23379},
}[!TIP] If you find our work useful, please also consider starring the original repositories of these foundational methods.