Identity-Preserving Text-to-Video Generation by Frequency Decomposition
Project description
Identity-Preserving Text-to-Video Generation by Frequency Decomposition
If you like our project, please give us a star โญ on GitHub for the latest update.
๐ก We also have other video generation projects that may interest you โจ.
Open-Sora Plan: Open-Source Large Video Generation Model
Bin Lin, Yunyang Ge and Xinhua Cheng etc.
![]()
![]()
![]()
MagicTime: Time-lapse Video Generation Models as Metamorphic Simulators
Shenghai Yuan, Jinfa Huang and Yujun Shi etc.
![]()
![]()
![]()
ChronoMagic-Bench: A Benchmark for Metamorphic Evaluation of Text-to-Time-lapse Video Generation
Shenghai Yuan, Jinfa Huang and Yongqi Xu etc.
![]()
![]()
![]()
๐ฃ News
- โณโณโณ Release the full codes & datasets & weights.
- โณโณโณ Integrate into Diffusers.
[2024.12.09]๐ฅWe release the test set and metric calculation code used in the paper, now your can measure the metrics on your own machine. Please refer to this guide for more details.[2024.12.08]๐ฅThe code for data preprocessing is out, which is used to obtain the training data required by ConsisID. Please refer to this guide for more details.[2024.12.04]Thanks @shizi for providing ๐คWindows-ConsisID and ๐ฃWindows-ConsisID, which make it easy to run ConsisID on Windows.[2024.12.01]๐ฅ We provide full text prompts corresponding to all the videos on project page. Click here to get and try the demo.[2024.11.30]๐ฅ We have fixed the huggingface demo, welcome to try it.[2024.11.29]๐ฅ The current codes and weights are our early versions, and the differences with the latest version in arxiv can be viewed here. And we will release the full codes in the next few days.[2024.11.28]Thanks @camenduru for providing Jupyter Notebook and @Kijai for providing ComfyUI Extension ComfyUI-ConsisIDWrapper. If you find related work, please let us know.[2024.11.27]๐ฅ Due to policy restrictions, we only open-source part of the dataset. You can download it by clicking here. And we will release the data processing codes in the next few days.[2024.11.26]๐ฅ We release the arXiv paper for ConsisID, and you can click here to see more details.[2024.11.22]๐ฅ All codes & datasets are coming soon! Stay tuned ๐!
๐ Gallery
Identity-Preserving Text-to-Video Generation.
or you can click here to watch the video.
๐ค Demo
Gradio Web UI
Highly recommend trying out our web demo by the following command, which incorporates all features currently supported by ConsisID. We also provide online demo in Hugging Face Spaces.
python app.py
CLI Inference
python infer.py --model_path BestWishYsh/ConsisID-preview
warning: It is worth noting that even if we use the same seed and prompt but we change a machine, the results will be different.
GPU Memory Optimization
# turn on if you don't have multiple GPUs or enough GPU memory(such as H100)
pipe.enable_model_cpu_offload()
pipe.enable_sequential_cpu_offload()
pipe.vae.enable_slicing()
pipe.vae.enable_tiling()
warning: it will cost more time in inference and may also reduce the quality.
Prompt Refiner
ConsisID has high requirements for prompt quality. You can use GPT-4o to refine the input text prompt, an example is as follows (original prompt: "a man is playing guitar.")
a man is playing guitar.
Change the sentence above to something like this (add some facial changes, even if they are minor. Don't make the sentence too long):
The video features a man standing next to an airplane, engaged in a conversation on his cell phone. he is wearing sunglasses and a black top, and he appears to be talking seriously. The airplane has a green stripe running along its side, and there is a large engine visible behind his. The man seems to be standing near the entrance of the airplane, possibly preparing to board or just having disembarked. The setting suggests that he might be at an airport or a private airfield. The overall atmosphere of the video is professional and focused, with the man's attire and the presence of the airplane indicating a business or travel context.
Some sample prompts are available here.
โ๏ธ Requirements and Installation
We recommend the requirements as follows.
Environment
git clone --depth=1 https://github.com/PKU-YuanGroup/ConsisID.git
cd ConsisID
conda create -n consisid python=3.11.0
conda activate consisid
pip install -r requirements.txt
Download ConsisID
The weights are available at ๐คHuggingFace and ๐ฃWiseModel, and will be automatically downloaded when runing app.py and infer.py, or you can download it with the following commands.
# way 1
# if you are in china mainland, run this first: export HF_ENDPOINT=https://hf-mirror.com
cd util
python download_weights.py
# way 2
# if you are in china mainland, run this first: export HF_ENDPOINT=https://hf-mirror.com
huggingface-cli download --repo-type model \
BestWishYsh/ConsisID-preview \
--local-dir ckpts
# way 3
git lfs install
git clone https://www.wisemodel.cn/SHYuanBest/ConsisID-Preview.git
Once ready, the weights will be organized in this format:
๐ฆ ckpts/
โโโ ๐ data_process/
โโโ ๐ face_encoder/
โโโ ๐ scheduler/
โโโ ๐ text_encoder/
โโโ ๐ tokenizer/
โโโ ๐ transformer/
โโโ ๐ vae/
โโโ ๐ configuration.json
โโโ ๐ model_index.json
๐๏ธ Training
Data preprocessing
Please refer to this guide for how to obtain the training data required by ConsisID. If you want to train a text to image and video generation model. You need to arrange all the dataset in this format:
๐ฆ datasets/
โโโ ๐ captions/
โ โโโ ๐ dataname_1.json
โ โโโ ๐ dataname_2.json
โโโ ๐ dataname_1/
โ โโโ ๐ refine_bbox_jsons/
โ โโโ ๐ track_masks_data/
โ โโโ ๐ videos/
โโโ ๐ dataname_2/
โ โโโ ๐ refine_bbox_jsons/
โ โโโ ๐ track_masks_data/
โ โโโ ๐ videos/
โโโ ...
โโโ ๐ total_train_data.txt
Video DiT training
First, setting hyperparameters:
- environment (e.g., cuda): deepspeed_configs
- training arguments (e.g., batchsize): train_single_rank.sh or train_multi_rank.sh
Then, we run the following bash to start training:
# For single rank
bash train_single_rank.sh
# For multi rank
bash train_multi_rank.sh
๐ Friendly Links
We found some plugins created by community developers. Thanks for their efforts:
- ComfyUI Extension. ComfyUI-ConsisIDWrapper (by @Kijai).
- Jupyter Notebook. Jupyter-ConsisID (by @camenduru).
- Windows Docker. ๐คWindows-ConsisID and ๐ฃWindows-ConsisID (by @shizi).
- Diffusers. We need your help to integrate ConsisID into Diffusers. ๐ [Need your contribution]
If you find related work, please let us know.
๐ณ Dataset
We release the subset of the data used to train ConsisID. The dataset is available at HuggingFace, or you can download it with the following command. Some samples can be found on our Project Page.
huggingface-cli download --repo-type dataset \
BestWishYsh/ConsisID-preview-Data \
--local-dir BestWishYsh/ConsisID-preview-Data
๐ ๏ธ Evaluation
We release the data used for evaluation in ConsisID, which is available at HuggingFace. Please refer to this guide for how to evaluate customized model.
๐ Acknowledgement
- This project wouldn't be possible without the following open-sourced repositories: Open-Sora Plan, CogVideoX, EasyAnimate, CogVideoX-Fun.
๐ License
- The majority of this project is released under the Apache 2.0 license as found in the LICENSE file.
- The CogVideoX-5B model (Transformers module) is released under the CogVideoX LICENSE.
- The service is a research preview. Please contact us if you find any potential violations. (shyuan-cs@hotmail.com)
โ๏ธ Citation
If you find our paper and codes useful in your research, please consider giving a star :star: and citation :pencil:.
@article{yuan2024identity,
title={Identity-Preserving Text-to-Video Generation by Frequency Decomposition},
author={Yuan, Shenghai and Huang, Jinfa and He, Xianyi and Ge, Yunyuan and Shi, Yujun and Chen, Liuhan and Luo, Jiebo and Yuan, Li},
journal={arXiv preprint arXiv:2411.17440},
year={2024}
}
๐ค Contributors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file consisid_eva_clip-1.0.2.tar.gz.
File metadata
- Download URL: consisid_eva_clip-1.0.2.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24dfd508d7c66ce690ef155ef75c5f119b640794a9aa1a19b8d40534c642b27f
|
|
| MD5 |
0ff0b561b8578964d21202a2f36bb51a
|
|
| BLAKE2b-256 |
9b214ecb3d80ff386eb81a31fbd8f7f0854258218f4148946e80c17819a0cc53
|
File details
Details for the file consisid_eva_clip-1.0.2-py3-none-any.whl.
File metadata
- Download URL: consisid_eva_clip-1.0.2-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dfd3fe613252efa562adfb1a93f13759b7983b3d7eefebe42f9f7507cfdc614
|
|
| MD5 |
fa09c65eddbabb1e38c5de5dc50662c7
|
|
| BLAKE2b-256 |
db1c69fe5b4f6c36e9b303f46d3fbccc7b3a1d59ffcca9355fd0c6277a074bf3
|