z pipeline_hunyuan_video.py
Browse files
hyvideo/diffusion/pipelines/README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Download Pretrained Models
|
| 2 |
+
|
| 3 |
+
All models are stored in `HunyuanVideo/ckpts` by default, and the file structure is as follows
|
| 4 |
+
```shell
|
| 5 |
+
HunyuanVideo
|
| 6 |
+
├──ckpts
|
| 7 |
+
│ ├──README.md
|
| 8 |
+
│ ├──hunyuan-video-t2v-720p
|
| 9 |
+
│ │ ├──transformers
|
| 10 |
+
│ │ │ ├──mp_rank_00_model_states.pt
|
| 11 |
+
│ │ │ ├──mp_rank_00_model_states_fp8.pt
|
| 12 |
+
│ │ │ ├──mp_rank_00_model_states_fp8_map.pt
|
| 13 |
+
├ │ ├──vae
|
| 14 |
+
│ ├──text_encoder
|
| 15 |
+
│ ├──text_encoder_2
|
| 16 |
+
├──...
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Download HunyuanVideo model
|
| 20 |
+
To download the HunyuanVideo model, first install the huggingface-cli. (Detailed instructions are available [here](https://huggingface.co/docs/huggingface_hub/guides/cli).)
|
| 21 |
+
|
| 22 |
+
```shell
|
| 23 |
+
python -m pip install "huggingface_hub[cli]"
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
Then download the model using the following commands:
|
| 27 |
+
|
| 28 |
+
```shell
|
| 29 |
+
# Switch to the directory named 'HunyuanVideo'
|
| 30 |
+
cd HunyuanVideo
|
| 31 |
+
# Use the huggingface-cli tool to download HunyuanVideo model in HunyuanVideo/ckpts dir.
|
| 32 |
+
# The download time may vary from 10 minutes to 1 hour depending on network conditions.
|
| 33 |
+
huggingface-cli download tencent/HunyuanVideo --local-dir ./ckpts
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
<details>
|
| 37 |
+
<summary>💡Tips for using huggingface-cli (network problem)</summary>
|
| 38 |
+
|
| 39 |
+
##### 1. Using HF-Mirror
|
| 40 |
+
|
| 41 |
+
If you encounter slow download speeds in China, you can try a mirror to speed up the download process. For example,
|
| 42 |
+
|
| 43 |
+
```shell
|
| 44 |
+
HF_ENDPOINT=https://hf-mirror.com huggingface-cli download tencent/HunyuanVideo --local-dir ./ckpts
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
##### 2. Resume Download
|
| 48 |
+
|
| 49 |
+
`huggingface-cli` supports resuming downloads. If the download is interrupted, you can just rerun the download
|
| 50 |
+
command to resume the download process.
|
| 51 |
+
|
| 52 |
+
Note: If an `No such file or directory: 'ckpts/.huggingface/.gitignore.lock'` like error occurs during the download
|
| 53 |
+
process, you can ignore the error and rerun the download command.
|
| 54 |
+
|
| 55 |
+
</details>
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
## Download Text Encoder
|
| 60 |
+
|
| 61 |
+
HunyuanVideo uses an MLLM model and a CLIP model as text encoder.
|
| 62 |
+
|
| 63 |
+
1. MLLM model (text_encoder folder)
|
| 64 |
+
|
| 65 |
+
HunyuanVideo supports different MLLMs (including HunyuanMLLM and open-source MLLM models). At this stage, we have not yet released HunyuanMLLM. We recommend the user in community to use [llava-llama-3-8b](https://huggingface.co/xtuner/llava-llama-3-8b-v1_1-transformers) provided by [Xtuer](https://huggingface.co/xtuner), which can be downloaded by the following command
|
| 66 |
+
|
| 67 |
+
```shell
|
| 68 |
+
cd HunyuanVideo/ckpts
|
| 69 |
+
huggingface-cli download xtuner/llava-llama-3-8b-v1_1-transformers --local-dir ./llava-llama-3-8b-v1_1-transformers
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
In order to save GPU memory resources for model loading, we separate the language model parts of `llava-llama-3-8b-v1_1-transformers` into `text_encoder`.
|
| 73 |
+
```
|
| 74 |
+
cd HunyuanVideo
|
| 75 |
+
python hyvideo/utils/preprocess_text_encoder_tokenizer_utils.py --input_dir ckpts/llava-llama-3-8b-v1_1-transformers --output_dir ckpts/text_encoder
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
2. CLIP model (text_encoder_2 folder)
|
| 79 |
+
|
| 80 |
+
We use [CLIP](https://huggingface.co/openai/clip-vit-large-patch14) provided by [OpenAI](https://openai.com) as another text encoder, users in the community can download this model by the following command
|
| 81 |
+
|
| 82 |
+
```
|
| 83 |
+
cd HunyuanVideo/ckpts
|
| 84 |
+
huggingface-cli download openai/clip-vit-large-patch14 --local-dir ./text_encoder_2
|
| 85 |
+
```
|
hyvideo/diffusion/pipelines/pipeline_hunyuan_video.py
ADDED
|
@@ -0,0 +1,1100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Copyright 2024 The HuggingFace Team. All rights reserved.
|
| 2 |
+
#
|
| 3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
# you may not use this file except in compliance with the License.
|
| 5 |
+
# You may obtain a copy of the License at
|
| 6 |
+
#
|
| 7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
#
|
| 9 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
# See the License for the specific language governing permissions and
|
| 13 |
+
# limitations under the License.
|
| 14 |
+
# ==============================================================================
|
| 15 |
+
#
|
| 16 |
+
# Modified from diffusers==0.29.2
|
| 17 |
+
#
|
| 18 |
+
# ==============================================================================
|
| 19 |
+
import inspect
|
| 20 |
+
from typing import Any, Callable, Dict, List, Optional, Union, Tuple
|
| 21 |
+
import torch
|
| 22 |
+
import torch.distributed as dist
|
| 23 |
+
import numpy as np
|
| 24 |
+
from dataclasses import dataclass
|
| 25 |
+
from packaging import version
|
| 26 |
+
|
| 27 |
+
from diffusers.callbacks import MultiPipelineCallbacks, PipelineCallback
|
| 28 |
+
from diffusers.configuration_utils import FrozenDict
|
| 29 |
+
from diffusers.image_processor import VaeImageProcessor
|
| 30 |
+
from diffusers.loaders import LoraLoaderMixin, TextualInversionLoaderMixin
|
| 31 |
+
from diffusers.models import AutoencoderKL
|
| 32 |
+
from diffusers.models.lora import adjust_lora_scale_text_encoder
|
| 33 |
+
from diffusers.schedulers import KarrasDiffusionSchedulers
|
| 34 |
+
from diffusers.utils import (
|
| 35 |
+
USE_PEFT_BACKEND,
|
| 36 |
+
deprecate,
|
| 37 |
+
logging,
|
| 38 |
+
replace_example_docstring,
|
| 39 |
+
scale_lora_layers,
|
| 40 |
+
unscale_lora_layers,
|
| 41 |
+
)
|
| 42 |
+
from diffusers.utils.torch_utils import randn_tensor
|
| 43 |
+
from diffusers.pipelines.pipeline_utils import DiffusionPipeline
|
| 44 |
+
from diffusers.utils import BaseOutput
|
| 45 |
+
|
| 46 |
+
from ...constants import PRECISION_TO_TYPE
|
| 47 |
+
from ...vae.autoencoder_kl_causal_3d import AutoencoderKLCausal3D
|
| 48 |
+
from ...text_encoder import TextEncoder
|
| 49 |
+
from ...modules import HYVideoDiffusionTransformer
|
| 50 |
+
|
| 51 |
+
logger = logging.get_logger(__name__) # pylint: disable=invalid-name
|
| 52 |
+
|
| 53 |
+
EXAMPLE_DOC_STRING = """"""
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
def rescale_noise_cfg(noise_cfg, noise_pred_text, guidance_rescale=0.0):
|
| 57 |
+
"""
|
| 58 |
+
Rescale `noise_cfg` according to `guidance_rescale`. Based on findings of [Common Diffusion Noise Schedules and
|
| 59 |
+
Sample Steps are Flawed](https://arxiv.org/pdf/2305.08891.pdf). See Section 3.4
|
| 60 |
+
"""
|
| 61 |
+
std_text = noise_pred_text.std(
|
| 62 |
+
dim=list(range(1, noise_pred_text.ndim)), keepdim=True
|
| 63 |
+
)
|
| 64 |
+
std_cfg = noise_cfg.std(dim=list(range(1, noise_cfg.ndim)), keepdim=True)
|
| 65 |
+
# rescale the results from guidance (fixes overexposure)
|
| 66 |
+
noise_pred_rescaled = noise_cfg * (std_text / std_cfg)
|
| 67 |
+
# mix with the original results from guidance by factor guidance_rescale to avoid "plain looking" images
|
| 68 |
+
noise_cfg = (
|
| 69 |
+
guidance_rescale * noise_pred_rescaled + (1 - guidance_rescale) * noise_cfg
|
| 70 |
+
)
|
| 71 |
+
return noise_cfg
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
def retrieve_timesteps(
|
| 75 |
+
scheduler,
|
| 76 |
+
num_inference_steps: Optional[int] = None,
|
| 77 |
+
device: Optional[Union[str, torch.device]] = None,
|
| 78 |
+
timesteps: Optional[List[int]] = None,
|
| 79 |
+
sigmas: Optional[List[float]] = None,
|
| 80 |
+
**kwargs,
|
| 81 |
+
):
|
| 82 |
+
"""
|
| 83 |
+
Calls the scheduler's `set_timesteps` method and retrieves timesteps from the scheduler after the call. Handles
|
| 84 |
+
custom timesteps. Any kwargs will be supplied to `scheduler.set_timesteps`.
|
| 85 |
+
|
| 86 |
+
Args:
|
| 87 |
+
scheduler (`SchedulerMixin`):
|
| 88 |
+
The scheduler to get timesteps from.
|
| 89 |
+
num_inference_steps (`int`):
|
| 90 |
+
The number of diffusion steps used when generating samples with a pre-trained model. If used, `timesteps`
|
| 91 |
+
must be `None`.
|
| 92 |
+
device (`str` or `torch.device`, *optional*):
|
| 93 |
+
The device to which the timesteps should be moved to. If `None`, the timesteps are not moved.
|
| 94 |
+
timesteps (`List[int]`, *optional*):
|
| 95 |
+
Custom timesteps used to override the timestep spacing strategy of the scheduler. If `timesteps` is passed,
|
| 96 |
+
`num_inference_steps` and `sigmas` must be `None`.
|
| 97 |
+
sigmas (`List[float]`, *optional*):
|
| 98 |
+
Custom sigmas used to override the timestep spacing strategy of the scheduler. If `sigmas` is passed,
|
| 99 |
+
`num_inference_steps` and `timesteps` must be `None`.
|
| 100 |
+
|
| 101 |
+
Returns:
|
| 102 |
+
`Tuple[torch.Tensor, int]`: A tuple where the first element is the timestep schedule from the scheduler and the
|
| 103 |
+
second element is the number of inference steps.
|
| 104 |
+
"""
|
| 105 |
+
if timesteps is not None and sigmas is not None:
|
| 106 |
+
raise ValueError(
|
| 107 |
+
"Only one of `timesteps` or `sigmas` can be passed. Please choose one to set custom values"
|
| 108 |
+
)
|
| 109 |
+
if timesteps is not None:
|
| 110 |
+
accepts_timesteps = "timesteps" in set(
|
| 111 |
+
inspect.signature(scheduler.set_timesteps).parameters.keys()
|
| 112 |
+
)
|
| 113 |
+
if not accepts_timesteps:
|
| 114 |
+
raise ValueError(
|
| 115 |
+
f"The current scheduler class {scheduler.__class__}'s `set_timesteps` does not support custom"
|
| 116 |
+
f" timestep schedules. Please check whether you are using the correct scheduler."
|
| 117 |
+
)
|
| 118 |
+
scheduler.set_timesteps(timesteps=timesteps, device=device, **kwargs)
|
| 119 |
+
timesteps = scheduler.timesteps
|
| 120 |
+
num_inference_steps = len(timesteps)
|
| 121 |
+
elif sigmas is not None:
|
| 122 |
+
accept_sigmas = "sigmas" in set(
|
| 123 |
+
inspect.signature(scheduler.set_timesteps).parameters.keys()
|
| 124 |
+
)
|
| 125 |
+
if not accept_sigmas:
|
| 126 |
+
raise ValueError(
|
| 127 |
+
f"The current scheduler class {scheduler.__class__}'s `set_timesteps` does not support custom"
|
| 128 |
+
f" sigmas schedules. Please check whether you are using the correct scheduler."
|
| 129 |
+
)
|
| 130 |
+
scheduler.set_timesteps(sigmas=sigmas, device=device, **kwargs)
|
| 131 |
+
timesteps = scheduler.timesteps
|
| 132 |
+
num_inference_steps = len(timesteps)
|
| 133 |
+
else:
|
| 134 |
+
scheduler.set_timesteps(num_inference_steps, device=device, **kwargs)
|
| 135 |
+
timesteps = scheduler.timesteps
|
| 136 |
+
return timesteps, num_inference_steps
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
@dataclass
|
| 140 |
+
class HunyuanVideoPipelineOutput(BaseOutput):
|
| 141 |
+
videos: Union[torch.Tensor, np.ndarray]
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
class HunyuanVideoPipeline(DiffusionPipeline):
|
| 145 |
+
r"""
|
| 146 |
+
Pipeline for text-to-video generation using HunyuanVideo.
|
| 147 |
+
|
| 148 |
+
This model inherits from [`DiffusionPipeline`]. Check the superclass documentation for the generic methods
|
| 149 |
+
implemented for all pipelines (downloading, saving, running on a particular device, etc.).
|
| 150 |
+
|
| 151 |
+
Args:
|
| 152 |
+
vae ([`AutoencoderKL`]):
|
| 153 |
+
Variational Auto-Encoder (VAE) model to encode and decode images to and from latent representations.
|
| 154 |
+
text_encoder ([`TextEncoder`]):
|
| 155 |
+
Frozen text-encoder.
|
| 156 |
+
text_encoder_2 ([`TextEncoder`]):
|
| 157 |
+
Frozen text-encoder_2.
|
| 158 |
+
transformer ([`HYVideoDiffusionTransformer`]):
|
| 159 |
+
A `HYVideoDiffusionTransformer` to denoise the encoded video latents.
|
| 160 |
+
scheduler ([`SchedulerMixin`]):
|
| 161 |
+
A scheduler to be used in combination with `unet` to denoise the encoded image latents.
|
| 162 |
+
"""
|
| 163 |
+
|
| 164 |
+
model_cpu_offload_seq = "text_encoder->text_encoder_2->transformer->vae"
|
| 165 |
+
_optional_components = ["text_encoder_2"]
|
| 166 |
+
_exclude_from_cpu_offload = ["transformer"]
|
| 167 |
+
_callback_tensor_inputs = ["latents", "prompt_embeds", "negative_prompt_embeds"]
|
| 168 |
+
|
| 169 |
+
def __init__(
|
| 170 |
+
self,
|
| 171 |
+
vae: AutoencoderKL,
|
| 172 |
+
text_encoder: TextEncoder,
|
| 173 |
+
transformer: HYVideoDiffusionTransformer,
|
| 174 |
+
scheduler: KarrasDiffusionSchedulers,
|
| 175 |
+
text_encoder_2: Optional[TextEncoder] = None,
|
| 176 |
+
progress_bar_config: Dict[str, Any] = None,
|
| 177 |
+
args=None,
|
| 178 |
+
):
|
| 179 |
+
super().__init__()
|
| 180 |
+
|
| 181 |
+
# ==========================================================================================
|
| 182 |
+
if progress_bar_config is None:
|
| 183 |
+
progress_bar_config = {}
|
| 184 |
+
if not hasattr(self, "_progress_bar_config"):
|
| 185 |
+
self._progress_bar_config = {}
|
| 186 |
+
self._progress_bar_config.update(progress_bar_config)
|
| 187 |
+
|
| 188 |
+
self.args = args
|
| 189 |
+
# ==========================================================================================
|
| 190 |
+
|
| 191 |
+
if (
|
| 192 |
+
hasattr(scheduler.config, "steps_offset")
|
| 193 |
+
and scheduler.config.steps_offset != 1
|
| 194 |
+
):
|
| 195 |
+
deprecation_message = (
|
| 196 |
+
f"The configuration file of this scheduler: {scheduler} is outdated. `steps_offset`"
|
| 197 |
+
f" should be set to 1 instead of {scheduler.config.steps_offset}. Please make sure "
|
| 198 |
+
"to update the config accordingly as leaving `steps_offset` might led to incorrect results"
|
| 199 |
+
" in future versions. If you have downloaded this checkpoint from the Hugging Face Hub,"
|
| 200 |
+
" it would be very nice if you could open a Pull request for the `scheduler/scheduler_config.json`"
|
| 201 |
+
" file"
|
| 202 |
+
)
|
| 203 |
+
deprecate(
|
| 204 |
+
"steps_offset!=1", "1.0.0", deprecation_message, standard_warn=False
|
| 205 |
+
)
|
| 206 |
+
new_config = dict(scheduler.config)
|
| 207 |
+
new_config["steps_offset"] = 1
|
| 208 |
+
scheduler._internal_dict = FrozenDict(new_config)
|
| 209 |
+
|
| 210 |
+
if (
|
| 211 |
+
hasattr(scheduler.config, "clip_sample")
|
| 212 |
+
and scheduler.config.clip_sample is True
|
| 213 |
+
):
|
| 214 |
+
deprecation_message = (
|
| 215 |
+
f"The configuration file of this scheduler: {scheduler} has not set the configuration `clip_sample`."
|
| 216 |
+
" `clip_sample` should be set to False in the configuration file. Please make sure to update the"
|
| 217 |
+
" config accordingly as not setting `clip_sample` in the config might lead to incorrect results in"
|
| 218 |
+
" future versions. If you have downloaded this checkpoint from the Hugging Face Hub, it would be very"
|
| 219 |
+
" nice if you could open a Pull request for the `scheduler/scheduler_config.json` file"
|
| 220 |
+
)
|
| 221 |
+
deprecate(
|
| 222 |
+
"clip_sample not set", "1.0.0", deprecation_message, standard_warn=False
|
| 223 |
+
)
|
| 224 |
+
new_config = dict(scheduler.config)
|
| 225 |
+
new_config["clip_sample"] = False
|
| 226 |
+
scheduler._internal_dict = FrozenDict(new_config)
|
| 227 |
+
|
| 228 |
+
self.register_modules(
|
| 229 |
+
vae=vae,
|
| 230 |
+
text_encoder=text_encoder,
|
| 231 |
+
transformer=transformer,
|
| 232 |
+
scheduler=scheduler,
|
| 233 |
+
text_encoder_2=text_encoder_2,
|
| 234 |
+
)
|
| 235 |
+
self.vae_scale_factor = 2 ** (len(self.vae.config.block_out_channels) - 1)
|
| 236 |
+
self.image_processor = VaeImageProcessor(vae_scale_factor=self.vae_scale_factor)
|
| 237 |
+
|
| 238 |
+
def encode_prompt(
|
| 239 |
+
self,
|
| 240 |
+
prompt,
|
| 241 |
+
device,
|
| 242 |
+
num_videos_per_prompt,
|
| 243 |
+
do_classifier_free_guidance,
|
| 244 |
+
negative_prompt=None,
|
| 245 |
+
prompt_embeds: Optional[torch.Tensor] = None,
|
| 246 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 247 |
+
negative_prompt_embeds: Optional[torch.Tensor] = None,
|
| 248 |
+
negative_attention_mask: Optional[torch.Tensor] = None,
|
| 249 |
+
lora_scale: Optional[float] = None,
|
| 250 |
+
clip_skip: Optional[int] = None,
|
| 251 |
+
text_encoder: Optional[TextEncoder] = None,
|
| 252 |
+
data_type: Optional[str] = "image",
|
| 253 |
+
):
|
| 254 |
+
r"""
|
| 255 |
+
Encodes the prompt into text encoder hidden states.
|
| 256 |
+
|
| 257 |
+
Args:
|
| 258 |
+
prompt (`str` or `List[str]`, *optional*):
|
| 259 |
+
prompt to be encoded
|
| 260 |
+
device: (`torch.device`):
|
| 261 |
+
torch device
|
| 262 |
+
num_videos_per_prompt (`int`):
|
| 263 |
+
number of videos that should be generated per prompt
|
| 264 |
+
do_classifier_free_guidance (`bool`):
|
| 265 |
+
whether to use classifier free guidance or not
|
| 266 |
+
negative_prompt (`str` or `List[str]`, *optional*):
|
| 267 |
+
The prompt or prompts not to guide the video generation. If not defined, one has to pass
|
| 268 |
+
`negative_prompt_embeds` instead. Ignored when not using guidance (i.e., ignored if `guidance_scale` is
|
| 269 |
+
less than `1`).
|
| 270 |
+
prompt_embeds (`torch.Tensor`, *optional*):
|
| 271 |
+
Pre-generated text embeddings. Can be used to easily tweak text inputs, *e.g.* prompt weighting. If not
|
| 272 |
+
provided, text embeddings will be generated from `prompt` input argument.
|
| 273 |
+
attention_mask (`torch.Tensor`, *optional*):
|
| 274 |
+
negative_prompt_embeds (`torch.Tensor`, *optional*):
|
| 275 |
+
Pre-generated negative text embeddings. Can be used to easily tweak text inputs, *e.g.* prompt
|
| 276 |
+
weighting. If not provided, negative_prompt_embeds will be generated from `negative_prompt` input
|
| 277 |
+
argument.
|
| 278 |
+
negative_attention_mask (`torch.Tensor`, *optional*):
|
| 279 |
+
lora_scale (`float`, *optional*):
|
| 280 |
+
A LoRA scale that will be applied to all LoRA layers of the text encoder if LoRA layers are loaded.
|
| 281 |
+
clip_skip (`int`, *optional*):
|
| 282 |
+
Number of layers to be skipped from CLIP while computing the prompt embeddings. A value of 1 means that
|
| 283 |
+
the output of the pre-final layer will be used for computing the prompt embeddings.
|
| 284 |
+
text_encoder (TextEncoder, *optional*):
|
| 285 |
+
data_type (`str`, *optional*):
|
| 286 |
+
"""
|
| 287 |
+
if text_encoder is None:
|
| 288 |
+
text_encoder = self.text_encoder
|
| 289 |
+
|
| 290 |
+
# set lora scale so that monkey patched LoRA
|
| 291 |
+
# function of text encoder can correctly access it
|
| 292 |
+
if lora_scale is not None and isinstance(self, LoraLoaderMixin):
|
| 293 |
+
self._lora_scale = lora_scale
|
| 294 |
+
|
| 295 |
+
# dynamically adjust the LoRA scale
|
| 296 |
+
if not USE_PEFT_BACKEND:
|
| 297 |
+
adjust_lora_scale_text_encoder(text_encoder.model, lora_scale)
|
| 298 |
+
else:
|
| 299 |
+
scale_lora_layers(text_encoder.model, lora_scale)
|
| 300 |
+
|
| 301 |
+
if prompt is not None and isinstance(prompt, str):
|
| 302 |
+
batch_size = 1
|
| 303 |
+
elif prompt is not None and isinstance(prompt, list):
|
| 304 |
+
batch_size = len(prompt)
|
| 305 |
+
else:
|
| 306 |
+
batch_size = prompt_embeds.shape[0]
|
| 307 |
+
|
| 308 |
+
if prompt_embeds is None:
|
| 309 |
+
# textual inversion: process multi-vector tokens if necessary
|
| 310 |
+
if isinstance(self, TextualInversionLoaderMixin):
|
| 311 |
+
prompt = self.maybe_convert_prompt(prompt, text_encoder.tokenizer)
|
| 312 |
+
|
| 313 |
+
text_inputs = text_encoder.text2tokens(prompt, data_type=data_type)
|
| 314 |
+
|
| 315 |
+
if clip_skip is None:
|
| 316 |
+
prompt_outputs = text_encoder.encode(
|
| 317 |
+
text_inputs, data_type=data_type, device=device
|
| 318 |
+
)
|
| 319 |
+
prompt_embeds = prompt_outputs.hidden_state
|
| 320 |
+
else:
|
| 321 |
+
prompt_outputs = text_encoder.encode(
|
| 322 |
+
text_inputs,
|
| 323 |
+
output_hidden_states=True,
|
| 324 |
+
data_type=data_type,
|
| 325 |
+
device=device,
|
| 326 |
+
)
|
| 327 |
+
# Access the `hidden_states` first, that contains a tuple of
|
| 328 |
+
# all the hidden states from the encoder layers. Then index into
|
| 329 |
+
# the tuple to access the hidden states from the desired layer.
|
| 330 |
+
prompt_embeds = prompt_outputs.hidden_states_list[-(clip_skip + 1)]
|
| 331 |
+
# We also need to apply the final LayerNorm here to not mess with the
|
| 332 |
+
# representations. The `last_hidden_states` that we typically use for
|
| 333 |
+
# obtaining the final prompt representations passes through the LayerNorm
|
| 334 |
+
# layer.
|
| 335 |
+
prompt_embeds = text_encoder.model.text_model.final_layer_norm(
|
| 336 |
+
prompt_embeds
|
| 337 |
+
)
|
| 338 |
+
|
| 339 |
+
attention_mask = prompt_outputs.attention_mask
|
| 340 |
+
if attention_mask is not None:
|
| 341 |
+
attention_mask = attention_mask.to(device)
|
| 342 |
+
bs_embed, seq_len = attention_mask.shape
|
| 343 |
+
attention_mask = attention_mask.repeat(1, num_videos_per_prompt)
|
| 344 |
+
attention_mask = attention_mask.view(
|
| 345 |
+
bs_embed * num_videos_per_prompt, seq_len
|
| 346 |
+
)
|
| 347 |
+
|
| 348 |
+
if text_encoder is not None:
|
| 349 |
+
prompt_embeds_dtype = text_encoder.dtype
|
| 350 |
+
elif self.transformer is not None:
|
| 351 |
+
prompt_embeds_dtype = self.transformer.dtype
|
| 352 |
+
else:
|
| 353 |
+
prompt_embeds_dtype = prompt_embeds.dtype
|
| 354 |
+
|
| 355 |
+
prompt_embeds = prompt_embeds.to(dtype=prompt_embeds_dtype, device=device)
|
| 356 |
+
|
| 357 |
+
if prompt_embeds.ndim == 2:
|
| 358 |
+
bs_embed, _ = prompt_embeds.shape
|
| 359 |
+
# duplicate text embeddings for each generation per prompt, using mps friendly method
|
| 360 |
+
prompt_embeds = prompt_embeds.repeat(1, num_videos_per_prompt)
|
| 361 |
+
prompt_embeds = prompt_embeds.view(bs_embed * num_videos_per_prompt, -1)
|
| 362 |
+
else:
|
| 363 |
+
bs_embed, seq_len, _ = prompt_embeds.shape
|
| 364 |
+
# duplicate text embeddings for each generation per prompt, using mps friendly method
|
| 365 |
+
prompt_embeds = prompt_embeds.repeat(1, num_videos_per_prompt, 1)
|
| 366 |
+
prompt_embeds = prompt_embeds.view(
|
| 367 |
+
bs_embed * num_videos_per_prompt, seq_len, -1
|
| 368 |
+
)
|
| 369 |
+
|
| 370 |
+
# get unconditional embeddings for classifier free guidance
|
| 371 |
+
if do_classifier_free_guidance and negative_prompt_embeds is None:
|
| 372 |
+
uncond_tokens: List[str]
|
| 373 |
+
if negative_prompt is None:
|
| 374 |
+
uncond_tokens = [""] * batch_size
|
| 375 |
+
elif prompt is not None and type(prompt) is not type(negative_prompt):
|
| 376 |
+
raise TypeError(
|
| 377 |
+
f"`negative_prompt` should be the same type to `prompt`, but got {type(negative_prompt)} !="
|
| 378 |
+
f" {type(prompt)}."
|
| 379 |
+
)
|
| 380 |
+
elif isinstance(negative_prompt, str):
|
| 381 |
+
uncond_tokens = [negative_prompt]
|
| 382 |
+
elif batch_size != len(negative_prompt):
|
| 383 |
+
raise ValueError(
|
| 384 |
+
f"`negative_prompt`: {negative_prompt} has batch size {len(negative_prompt)}, but `prompt`:"
|
| 385 |
+
f" {prompt} has batch size {batch_size}. Please make sure that passed `negative_prompt` matches"
|
| 386 |
+
" the batch size of `prompt`."
|
| 387 |
+
)
|
| 388 |
+
else:
|
| 389 |
+
uncond_tokens = negative_prompt
|
| 390 |
+
|
| 391 |
+
# textual inversion: process multi-vector tokens if necessary
|
| 392 |
+
if isinstance(self, TextualInversionLoaderMixin):
|
| 393 |
+
uncond_tokens = self.maybe_convert_prompt(
|
| 394 |
+
uncond_tokens, text_encoder.tokenizer
|
| 395 |
+
)
|
| 396 |
+
|
| 397 |
+
# max_length = prompt_embeds.shape[1]
|
| 398 |
+
uncond_input = text_encoder.text2tokens(uncond_tokens, data_type=data_type)
|
| 399 |
+
|
| 400 |
+
negative_prompt_outputs = text_encoder.encode(
|
| 401 |
+
uncond_input, data_type=data_type, device=device
|
| 402 |
+
)
|
| 403 |
+
negative_prompt_embeds = negative_prompt_outputs.hidden_state
|
| 404 |
+
|
| 405 |
+
negative_attention_mask = negative_prompt_outputs.attention_mask
|
| 406 |
+
if negative_attention_mask is not None:
|
| 407 |
+
negative_attention_mask = negative_attention_mask.to(device)
|
| 408 |
+
_, seq_len = negative_attention_mask.shape
|
| 409 |
+
negative_attention_mask = negative_attention_mask.repeat(
|
| 410 |
+
1, num_videos_per_prompt
|
| 411 |
+
)
|
| 412 |
+
negative_attention_mask = negative_attention_mask.view(
|
| 413 |
+
batch_size * num_videos_per_prompt, seq_len
|
| 414 |
+
)
|
| 415 |
+
|
| 416 |
+
if do_classifier_free_guidance:
|
| 417 |
+
# duplicate unconditional embeddings for each generation per prompt, using mps friendly method
|
| 418 |
+
seq_len = negative_prompt_embeds.shape[1]
|
| 419 |
+
|
| 420 |
+
negative_prompt_embeds = negative_prompt_embeds.to(
|
| 421 |
+
dtype=prompt_embeds_dtype, device=device
|
| 422 |
+
)
|
| 423 |
+
|
| 424 |
+
if negative_prompt_embeds.ndim == 2:
|
| 425 |
+
negative_prompt_embeds = negative_prompt_embeds.repeat(
|
| 426 |
+
1, num_videos_per_prompt
|
| 427 |
+
)
|
| 428 |
+
negative_prompt_embeds = negative_prompt_embeds.view(
|
| 429 |
+
batch_size * num_videos_per_prompt, -1
|
| 430 |
+
)
|
| 431 |
+
else:
|
| 432 |
+
negative_prompt_embeds = negative_prompt_embeds.repeat(
|
| 433 |
+
1, num_videos_per_prompt, 1
|
| 434 |
+
)
|
| 435 |
+
negative_prompt_embeds = negative_prompt_embeds.view(
|
| 436 |
+
batch_size * num_videos_per_prompt, seq_len, -1
|
| 437 |
+
)
|
| 438 |
+
|
| 439 |
+
if text_encoder is not None:
|
| 440 |
+
if isinstance(self, LoraLoaderMixin) and USE_PEFT_BACKEND:
|
| 441 |
+
# Retrieve the original scale by scaling back the LoRA layers
|
| 442 |
+
unscale_lora_layers(text_encoder.model, lora_scale)
|
| 443 |
+
|
| 444 |
+
return (
|
| 445 |
+
prompt_embeds,
|
| 446 |
+
negative_prompt_embeds,
|
| 447 |
+
attention_mask,
|
| 448 |
+
negative_attention_mask,
|
| 449 |
+
)
|
| 450 |
+
|
| 451 |
+
def decode_latents(self, latents, enable_tiling=True):
|
| 452 |
+
deprecation_message = "The decode_latents method is deprecated and will be removed in 1.0.0. Please use VaeImageProcessor.postprocess(...) instead"
|
| 453 |
+
deprecate("decode_latents", "1.0.0", deprecation_message, standard_warn=False)
|
| 454 |
+
|
| 455 |
+
latents = 1 / self.vae.config.scaling_factor * latents
|
| 456 |
+
if enable_tiling:
|
| 457 |
+
self.vae.enable_tiling()
|
| 458 |
+
image = self.vae.decode(latents, return_dict=False)[0]
|
| 459 |
+
else:
|
| 460 |
+
image = self.vae.decode(latents, return_dict=False)[0]
|
| 461 |
+
image = (image / 2 + 0.5).clamp(0, 1)
|
| 462 |
+
# we always cast to float32 as this does not cause significant overhead and is compatible with bfloat16
|
| 463 |
+
if image.ndim == 4:
|
| 464 |
+
image = image.cpu().permute(0, 2, 3, 1).float()
|
| 465 |
+
else:
|
| 466 |
+
image = image.cpu().float()
|
| 467 |
+
return image
|
| 468 |
+
|
| 469 |
+
def prepare_extra_func_kwargs(self, func, kwargs):
|
| 470 |
+
# prepare extra kwargs for the scheduler step, since not all schedulers have the same signature
|
| 471 |
+
# eta (η) is only used with the DDIMScheduler, it will be ignored for other schedulers.
|
| 472 |
+
# eta corresponds to η in DDIM paper: https://arxiv.org/abs/2010.02502
|
| 473 |
+
# and should be between [0, 1]
|
| 474 |
+
extra_step_kwargs = {}
|
| 475 |
+
|
| 476 |
+
for k, v in kwargs.items():
|
| 477 |
+
accepts = k in set(inspect.signature(func).parameters.keys())
|
| 478 |
+
if accepts:
|
| 479 |
+
extra_step_kwargs[k] = v
|
| 480 |
+
return extra_step_kwargs
|
| 481 |
+
|
| 482 |
+
def check_inputs(
|
| 483 |
+
self,
|
| 484 |
+
prompt,
|
| 485 |
+
height,
|
| 486 |
+
width,
|
| 487 |
+
video_length,
|
| 488 |
+
callback_steps,
|
| 489 |
+
negative_prompt=None,
|
| 490 |
+
prompt_embeds=None,
|
| 491 |
+
negative_prompt_embeds=None,
|
| 492 |
+
callback_on_step_end_tensor_inputs=None,
|
| 493 |
+
vae_ver="88-4c-sd",
|
| 494 |
+
):
|
| 495 |
+
if height % 8 != 0 or width % 8 != 0:
|
| 496 |
+
raise ValueError(
|
| 497 |
+
f"`height` and `width` have to be divisible by 8 but are {height} and {width}."
|
| 498 |
+
)
|
| 499 |
+
|
| 500 |
+
if video_length is not None:
|
| 501 |
+
if "884" in vae_ver:
|
| 502 |
+
if video_length != 1 and (video_length - 1) % 4 != 0:
|
| 503 |
+
raise ValueError(
|
| 504 |
+
f"`video_length` has to be 1 or a multiple of 4 but is {video_length}."
|
| 505 |
+
)
|
| 506 |
+
elif "888" in vae_ver:
|
| 507 |
+
if video_length != 1 and (video_length - 1) % 8 != 0:
|
| 508 |
+
raise ValueError(
|
| 509 |
+
f"`video_length` has to be 1 or a multiple of 8 but is {video_length}."
|
| 510 |
+
)
|
| 511 |
+
|
| 512 |
+
if callback_steps is not None and (
|
| 513 |
+
not isinstance(callback_steps, int) or callback_steps <= 0
|
| 514 |
+
):
|
| 515 |
+
raise ValueError(
|
| 516 |
+
f"`callback_steps` has to be a positive integer but is {callback_steps} of type"
|
| 517 |
+
f" {type(callback_steps)}."
|
| 518 |
+
)
|
| 519 |
+
if callback_on_step_end_tensor_inputs is not None and not all(
|
| 520 |
+
k in self._callback_tensor_inputs
|
| 521 |
+
for k in callback_on_step_end_tensor_inputs
|
| 522 |
+
):
|
| 523 |
+
raise ValueError(
|
| 524 |
+
f"`callback_on_step_end_tensor_inputs` has to be in {self._callback_tensor_inputs}, but found {[k for k in callback_on_step_end_tensor_inputs if k not in self._callback_tensor_inputs]}"
|
| 525 |
+
)
|
| 526 |
+
|
| 527 |
+
if prompt is not None and prompt_embeds is not None:
|
| 528 |
+
raise ValueError(
|
| 529 |
+
f"Cannot forward both `prompt`: {prompt} and `prompt_embeds`: {prompt_embeds}. Please make sure to"
|
| 530 |
+
" only forward one of the two."
|
| 531 |
+
)
|
| 532 |
+
elif prompt is None and prompt_embeds is None:
|
| 533 |
+
raise ValueError(
|
| 534 |
+
"Provide either `prompt` or `prompt_embeds`. Cannot leave both `prompt` and `prompt_embeds` undefined."
|
| 535 |
+
)
|
| 536 |
+
elif prompt is not None and (
|
| 537 |
+
not isinstance(prompt, str) and not isinstance(prompt, list)
|
| 538 |
+
):
|
| 539 |
+
raise ValueError(
|
| 540 |
+
f"`prompt` has to be of type `str` or `list` but is {type(prompt)}"
|
| 541 |
+
)
|
| 542 |
+
|
| 543 |
+
if negative_prompt is not None and negative_prompt_embeds is not None:
|
| 544 |
+
raise ValueError(
|
| 545 |
+
f"Cannot forward both `negative_prompt`: {negative_prompt} and `negative_prompt_embeds`:"
|
| 546 |
+
f" {negative_prompt_embeds}. Please make sure to only forward one of the two."
|
| 547 |
+
)
|
| 548 |
+
|
| 549 |
+
if prompt_embeds is not None and negative_prompt_embeds is not None:
|
| 550 |
+
if prompt_embeds.shape != negative_prompt_embeds.shape:
|
| 551 |
+
raise ValueError(
|
| 552 |
+
"`prompt_embeds` and `negative_prompt_embeds` must have the same shape when passed directly, but"
|
| 553 |
+
f" got: `prompt_embeds` {prompt_embeds.shape} != `negative_prompt_embeds`"
|
| 554 |
+
f" {negative_prompt_embeds.shape}."
|
| 555 |
+
)
|
| 556 |
+
|
| 557 |
+
|
| 558 |
+
def prepare_latents(
|
| 559 |
+
self,
|
| 560 |
+
batch_size,
|
| 561 |
+
num_channels_latents,
|
| 562 |
+
height,
|
| 563 |
+
width,
|
| 564 |
+
video_length,
|
| 565 |
+
dtype,
|
| 566 |
+
device,
|
| 567 |
+
generator,
|
| 568 |
+
latents=None,
|
| 569 |
+
):
|
| 570 |
+
shape = (
|
| 571 |
+
batch_size,
|
| 572 |
+
num_channels_latents,
|
| 573 |
+
video_length,
|
| 574 |
+
int(height) // self.vae_scale_factor,
|
| 575 |
+
int(width) // self.vae_scale_factor,
|
| 576 |
+
)
|
| 577 |
+
if isinstance(generator, list) and len(generator) != batch_size:
|
| 578 |
+
raise ValueError(
|
| 579 |
+
f"You have passed a list of generators of length {len(generator)}, but requested an effective batch"
|
| 580 |
+
f" size of {batch_size}. Make sure the batch size matches the length of the generators."
|
| 581 |
+
)
|
| 582 |
+
|
| 583 |
+
if latents is None:
|
| 584 |
+
latents = randn_tensor(
|
| 585 |
+
shape, generator=generator, device=device, dtype=dtype
|
| 586 |
+
)
|
| 587 |
+
else:
|
| 588 |
+
latents = latents.to(device)
|
| 589 |
+
|
| 590 |
+
# Check existence to make it compatible with FlowMatchEulerDiscreteScheduler
|
| 591 |
+
if hasattr(self.scheduler, "init_noise_sigma"):
|
| 592 |
+
# scale the initial noise by the standard deviation required by the scheduler
|
| 593 |
+
latents = latents * self.scheduler.init_noise_sigma
|
| 594 |
+
return latents
|
| 595 |
+
|
| 596 |
+
# Copied from diffusers.pipelines.latent_consistency_models.pipeline_latent_consistency_text2img.LatentConsistencyModelPipeline.get_guidance_scale_embedding
|
| 597 |
+
def get_guidance_scale_embedding(
|
| 598 |
+
self,
|
| 599 |
+
w: torch.Tensor,
|
| 600 |
+
embedding_dim: int = 512,
|
| 601 |
+
dtype: torch.dtype = torch.float32,
|
| 602 |
+
) -> torch.Tensor:
|
| 603 |
+
"""
|
| 604 |
+
See https://github.com/google-research/vdm/blob/dc27b98a554f65cdc654b800da5aa1846545d41b/model_vdm.py#L298
|
| 605 |
+
|
| 606 |
+
Args:
|
| 607 |
+
w (`torch.Tensor`):
|
| 608 |
+
Generate embedding vectors with a specified guidance scale to subsequently enrich timestep embeddings.
|
| 609 |
+
embedding_dim (`int`, *optional*, defaults to 512):
|
| 610 |
+
Dimension of the embeddings to generate.
|
| 611 |
+
dtype (`torch.dtype`, *optional*, defaults to `torch.float32`):
|
| 612 |
+
Data type of the generated embeddings.
|
| 613 |
+
|
| 614 |
+
Returns:
|
| 615 |
+
`torch.Tensor`: Embedding vectors with shape `(len(w), embedding_dim)`.
|
| 616 |
+
"""
|
| 617 |
+
assert len(w.shape) == 1
|
| 618 |
+
w = w * 1000.0
|
| 619 |
+
|
| 620 |
+
half_dim = embedding_dim // 2
|
| 621 |
+
emb = torch.log(torch.tensor(10000.0)) / (half_dim - 1)
|
| 622 |
+
emb = torch.exp(torch.arange(half_dim, dtype=dtype) * -emb)
|
| 623 |
+
emb = w.to(dtype)[:, None] * emb[None, :]
|
| 624 |
+
emb = torch.cat([torch.sin(emb), torch.cos(emb)], dim=1)
|
| 625 |
+
if embedding_dim % 2 == 1: # zero pad
|
| 626 |
+
emb = torch.nn.functional.pad(emb, (0, 1))
|
| 627 |
+
assert emb.shape == (w.shape[0], embedding_dim)
|
| 628 |
+
return emb
|
| 629 |
+
|
| 630 |
+
@property
|
| 631 |
+
def guidance_scale(self):
|
| 632 |
+
return self._guidance_scale
|
| 633 |
+
|
| 634 |
+
@property
|
| 635 |
+
def guidance_rescale(self):
|
| 636 |
+
return self._guidance_rescale
|
| 637 |
+
|
| 638 |
+
@property
|
| 639 |
+
def clip_skip(self):
|
| 640 |
+
return self._clip_skip
|
| 641 |
+
|
| 642 |
+
# here `guidance_scale` is defined analog to the guidance weight `w` of equation (2)
|
| 643 |
+
# of the Imagen paper: https://arxiv.org/pdf/2205.11487.pdf . `guidance_scale = 1`
|
| 644 |
+
# corresponds to doing no classifier free guidance.
|
| 645 |
+
@property
|
| 646 |
+
def do_classifier_free_guidance(self):
|
| 647 |
+
# return self._guidance_scale > 1 and self.transformer.config.time_cond_proj_dim is None
|
| 648 |
+
return self._guidance_scale > 1
|
| 649 |
+
|
| 650 |
+
@property
|
| 651 |
+
def cross_attention_kwargs(self):
|
| 652 |
+
return self._cross_attention_kwargs
|
| 653 |
+
|
| 654 |
+
@property
|
| 655 |
+
def num_timesteps(self):
|
| 656 |
+
return self._num_timesteps
|
| 657 |
+
|
| 658 |
+
@property
|
| 659 |
+
def interrupt(self):
|
| 660 |
+
return self._interrupt
|
| 661 |
+
|
| 662 |
+
@torch.no_grad()
|
| 663 |
+
@replace_example_docstring(EXAMPLE_DOC_STRING)
|
| 664 |
+
def __call__(
|
| 665 |
+
self,
|
| 666 |
+
prompt: Union[str, List[str]],
|
| 667 |
+
height: int,
|
| 668 |
+
width: int,
|
| 669 |
+
video_length: int,
|
| 670 |
+
data_type: str = "video",
|
| 671 |
+
num_inference_steps: int = 50,
|
| 672 |
+
timesteps: List[int] = None,
|
| 673 |
+
sigmas: List[float] = None,
|
| 674 |
+
guidance_scale: float = 7.5,
|
| 675 |
+
negative_prompt: Optional[Union[str, List[str]]] = None,
|
| 676 |
+
num_videos_per_prompt: Optional[int] = 1,
|
| 677 |
+
eta: float = 0.0,
|
| 678 |
+
generator: Optional[Union[torch.Generator, List[torch.Generator]]] = None,
|
| 679 |
+
latents: Optional[torch.Tensor] = None,
|
| 680 |
+
prompt_embeds: Optional[torch.Tensor] = None,
|
| 681 |
+
attention_mask: Optional[torch.Tensor] = None,
|
| 682 |
+
negative_prompt_embeds: Optional[torch.Tensor] = None,
|
| 683 |
+
negative_attention_mask: Optional[torch.Tensor] = None,
|
| 684 |
+
output_type: Optional[str] = "pil",
|
| 685 |
+
return_dict: bool = True,
|
| 686 |
+
cross_attention_kwargs: Optional[Dict[str, Any]] = None,
|
| 687 |
+
guidance_rescale: float = 0.0,
|
| 688 |
+
clip_skip: Optional[int] = None,
|
| 689 |
+
callback_on_step_end: Optional[
|
| 690 |
+
Union[
|
| 691 |
+
Callable[[int, int, Dict], None],
|
| 692 |
+
PipelineCallback,
|
| 693 |
+
MultiPipelineCallbacks,
|
| 694 |
+
]
|
| 695 |
+
] = None,
|
| 696 |
+
callback_on_step_end_tensor_inputs: List[str] = ["latents"],
|
| 697 |
+
freqs_cis: Tuple[torch.Tensor, torch.Tensor] = None,
|
| 698 |
+
vae_ver: str = "88-4c-sd",
|
| 699 |
+
enable_tiling: bool = False,
|
| 700 |
+
n_tokens: Optional[int] = None,
|
| 701 |
+
embedded_guidance_scale: Optional[float] = None,
|
| 702 |
+
**kwargs,
|
| 703 |
+
):
|
| 704 |
+
r"""
|
| 705 |
+
The call function to the pipeline for generation.
|
| 706 |
+
|
| 707 |
+
Args:
|
| 708 |
+
prompt (`str` or `List[str]`):
|
| 709 |
+
The prompt or prompts to guide image generation. If not defined, you need to pass `prompt_embeds`.
|
| 710 |
+
height (`int`):
|
| 711 |
+
The height in pixels of the generated image.
|
| 712 |
+
width (`int`):
|
| 713 |
+
The width in pixels of the generated image.
|
| 714 |
+
video_length (`int`):
|
| 715 |
+
The number of frames in the generated video.
|
| 716 |
+
num_inference_steps (`int`, *optional*, defaults to 50):
|
| 717 |
+
The number of denoising steps. More denoising steps usually lead to a higher quality image at the
|
| 718 |
+
expense of slower inference.
|
| 719 |
+
timesteps (`List[int]`, *optional*):
|
| 720 |
+
Custom timesteps to use for the denoising process with schedulers which support a `timesteps` argument
|
| 721 |
+
in their `set_timesteps` method. If not defined, the default behavior when `num_inference_steps` is
|
| 722 |
+
passed will be used. Must be in descending order.
|
| 723 |
+
sigmas (`List[float]`, *optional*):
|
| 724 |
+
Custom sigmas to use for the denoising process with schedulers which support a `sigmas` argument in
|
| 725 |
+
their `set_timesteps` method. If not defined, the default behavior when `num_inference_steps` is passed
|
| 726 |
+
will be used.
|
| 727 |
+
guidance_scale (`float`, *optional*, defaults to 7.5):
|
| 728 |
+
A higher guidance scale value encourages the model to generate images closely linked to the text
|
| 729 |
+
`prompt` at the expense of lower image quality. Guidance scale is enabled when `guidance_scale > 1`.
|
| 730 |
+
negative_prompt (`str` or `List[str]`, *optional*):
|
| 731 |
+
The prompt or prompts to guide what to not include in image generation. If not defined, you need to
|
| 732 |
+
pass `negative_prompt_embeds` instead. Ignored when not using guidance (`guidance_scale < 1`).
|
| 733 |
+
num_videos_per_prompt (`int`, *optional*, defaults to 1):
|
| 734 |
+
The number of images to generate per prompt.
|
| 735 |
+
eta (`float`, *optional*, defaults to 0.0):
|
| 736 |
+
Corresponds to parameter eta (η) from the [DDIM](https://arxiv.org/abs/2010.02502) paper. Only applies
|
| 737 |
+
to the [`~schedulers.DDIMScheduler`], and is ignored in other schedulers.
|
| 738 |
+
generator (`torch.Generator` or `List[torch.Generator]`, *optional*):
|
| 739 |
+
A [`torch.Generator`](https://pytorch.org/docs/stable/generated/torch.Generator.html) to make
|
| 740 |
+
generation deterministic.
|
| 741 |
+
latents (`torch.Tensor`, *optional*):
|
| 742 |
+
Pre-generated noisy latents sampled from a Gaussian distribution, to be used as inputs for image
|
| 743 |
+
generation. Can be used to tweak the same generation with different prompts. If not provided, a latents
|
| 744 |
+
tensor is generated by sampling using the supplied random `generator`.
|
| 745 |
+
prompt_embeds (`torch.Tensor`, *optional*):
|
| 746 |
+
Pre-generated text embeddings. Can be used to easily tweak text inputs (prompt weighting). If not
|
| 747 |
+
provided, text embeddings are generated from the `prompt` input argument.
|
| 748 |
+
negative_prompt_embeds (`torch.Tensor`, *optional*):
|
| 749 |
+
Pre-generated negative text embeddings. Can be used to easily tweak text inputs (prompt weighting). If
|
| 750 |
+
not provided, `negative_prompt_embeds` are generated from the `negative_prompt` input argument.
|
| 751 |
+
|
| 752 |
+
output_type (`str`, *optional*, defaults to `"pil"`):
|
| 753 |
+
The output format of the generated image. Choose between `PIL.Image` or `np.array`.
|
| 754 |
+
return_dict (`bool`, *optional*, defaults to `True`):
|
| 755 |
+
Whether or not to return a [`HunyuanVideoPipelineOutput`] instead of a
|
| 756 |
+
plain tuple.
|
| 757 |
+
cross_attention_kwargs (`dict`, *optional*):
|
| 758 |
+
A kwargs dictionary that if specified is passed along to the [`AttentionProcessor`] as defined in
|
| 759 |
+
[`self.processor`](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/attention_processor.py).
|
| 760 |
+
guidance_rescale (`float`, *optional*, defaults to 0.0):
|
| 761 |
+
Guidance rescale factor from [Common Diffusion Noise Schedules and Sample Steps are
|
| 762 |
+
Flawed](https://arxiv.org/pdf/2305.08891.pdf). Guidance rescale factor should fix overexposure when
|
| 763 |
+
using zero terminal SNR.
|
| 764 |
+
clip_skip (`int`, *optional*):
|
| 765 |
+
Number of layers to be skipped from CLIP while computing the prompt embeddings. A value of 1 means that
|
| 766 |
+
the output of the pre-final layer will be used for computing the prompt embeddings.
|
| 767 |
+
callback_on_step_end (`Callable`, `PipelineCallback`, `MultiPipelineCallbacks`, *optional*):
|
| 768 |
+
A function or a subclass of `PipelineCallback` or `MultiPipelineCallbacks` that is called at the end of
|
| 769 |
+
each denoising step during the inference. with the following arguments: `callback_on_step_end(self:
|
| 770 |
+
DiffusionPipeline, step: int, timestep: int, callback_kwargs: Dict)`. `callback_kwargs` will include a
|
| 771 |
+
list of all tensors as specified by `callback_on_step_end_tensor_inputs`.
|
| 772 |
+
callback_on_step_end_tensor_inputs (`List`, *optional*):
|
| 773 |
+
The list of tensor inputs for the `callback_on_step_end` function. The tensors specified in the list
|
| 774 |
+
will be passed as `callback_kwargs` argument. You will only be able to include variables listed in the
|
| 775 |
+
`._callback_tensor_inputs` attribute of your pipeline class.
|
| 776 |
+
|
| 777 |
+
Examples:
|
| 778 |
+
|
| 779 |
+
Returns:
|
| 780 |
+
[`~HunyuanVideoPipelineOutput`] or `tuple`:
|
| 781 |
+
If `return_dict` is `True`, [`HunyuanVideoPipelineOutput`] is returned,
|
| 782 |
+
otherwise a `tuple` is returned where the first element is a list with the generated images and the
|
| 783 |
+
second element is a list of `bool`s indicating whether the corresponding generated image contains
|
| 784 |
+
"not-safe-for-work" (nsfw) content.
|
| 785 |
+
"""
|
| 786 |
+
callback = kwargs.pop("callback", None)
|
| 787 |
+
callback_steps = kwargs.pop("callback_steps", None)
|
| 788 |
+
|
| 789 |
+
if callback is not None:
|
| 790 |
+
deprecate(
|
| 791 |
+
"callback",
|
| 792 |
+
"1.0.0",
|
| 793 |
+
"Passing `callback` as an input argument to `__call__` is deprecated, consider using `callback_on_step_end`",
|
| 794 |
+
)
|
| 795 |
+
if callback_steps is not None:
|
| 796 |
+
deprecate(
|
| 797 |
+
"callback_steps",
|
| 798 |
+
"1.0.0",
|
| 799 |
+
"Passing `callback_steps` as an input argument to `__call__` is deprecated, consider using `callback_on_step_end`",
|
| 800 |
+
)
|
| 801 |
+
|
| 802 |
+
if isinstance(callback_on_step_end, (PipelineCallback, MultiPipelineCallbacks)):
|
| 803 |
+
callback_on_step_end_tensor_inputs = callback_on_step_end.tensor_inputs
|
| 804 |
+
|
| 805 |
+
# 0. Default height and width to unet
|
| 806 |
+
# height = height or self.transformer.config.sample_size * self.vae_scale_factor
|
| 807 |
+
# width = width or self.transformer.config.sample_size * self.vae_scale_factor
|
| 808 |
+
# to deal with lora scaling and other possible forward hooks
|
| 809 |
+
|
| 810 |
+
# 1. Check inputs. Raise error if not correct
|
| 811 |
+
self.check_inputs(
|
| 812 |
+
prompt,
|
| 813 |
+
height,
|
| 814 |
+
width,
|
| 815 |
+
video_length,
|
| 816 |
+
callback_steps,
|
| 817 |
+
negative_prompt,
|
| 818 |
+
prompt_embeds,
|
| 819 |
+
negative_prompt_embeds,
|
| 820 |
+
callback_on_step_end_tensor_inputs,
|
| 821 |
+
vae_ver=vae_ver,
|
| 822 |
+
)
|
| 823 |
+
|
| 824 |
+
self._guidance_scale = guidance_scale
|
| 825 |
+
self._guidance_rescale = guidance_rescale
|
| 826 |
+
self._clip_skip = clip_skip
|
| 827 |
+
self._cross_attention_kwargs = cross_attention_kwargs
|
| 828 |
+
self._interrupt = False
|
| 829 |
+
|
| 830 |
+
# 2. Define call parameters
|
| 831 |
+
if prompt is not None and isinstance(prompt, str):
|
| 832 |
+
batch_size = 1
|
| 833 |
+
elif prompt is not None and isinstance(prompt, list):
|
| 834 |
+
batch_size = len(prompt)
|
| 835 |
+
else:
|
| 836 |
+
batch_size = prompt_embeds.shape[0]
|
| 837 |
+
|
| 838 |
+
device = torch.device(f"cuda:{dist.get_rank()}") if dist.is_initialized() else self._execution_device
|
| 839 |
+
|
| 840 |
+
# 3. Encode input prompt
|
| 841 |
+
lora_scale = (
|
| 842 |
+
self.cross_attention_kwargs.get("scale", None)
|
| 843 |
+
if self.cross_attention_kwargs is not None
|
| 844 |
+
else None
|
| 845 |
+
)
|
| 846 |
+
|
| 847 |
+
(
|
| 848 |
+
prompt_embeds,
|
| 849 |
+
negative_prompt_embeds,
|
| 850 |
+
prompt_mask,
|
| 851 |
+
negative_prompt_mask,
|
| 852 |
+
) = self.encode_prompt(
|
| 853 |
+
prompt,
|
| 854 |
+
device,
|
| 855 |
+
num_videos_per_prompt,
|
| 856 |
+
self.do_classifier_free_guidance,
|
| 857 |
+
negative_prompt,
|
| 858 |
+
prompt_embeds=prompt_embeds,
|
| 859 |
+
attention_mask=attention_mask,
|
| 860 |
+
negative_prompt_embeds=negative_prompt_embeds,
|
| 861 |
+
negative_attention_mask=negative_attention_mask,
|
| 862 |
+
lora_scale=lora_scale,
|
| 863 |
+
clip_skip=self.clip_skip,
|
| 864 |
+
data_type=data_type,
|
| 865 |
+
)
|
| 866 |
+
if self.text_encoder_2 is not None:
|
| 867 |
+
(
|
| 868 |
+
prompt_embeds_2,
|
| 869 |
+
negative_prompt_embeds_2,
|
| 870 |
+
prompt_mask_2,
|
| 871 |
+
negative_prompt_mask_2,
|
| 872 |
+
) = self.encode_prompt(
|
| 873 |
+
prompt,
|
| 874 |
+
device,
|
| 875 |
+
num_videos_per_prompt,
|
| 876 |
+
self.do_classifier_free_guidance,
|
| 877 |
+
negative_prompt,
|
| 878 |
+
prompt_embeds=None,
|
| 879 |
+
attention_mask=None,
|
| 880 |
+
negative_prompt_embeds=None,
|
| 881 |
+
negative_attention_mask=None,
|
| 882 |
+
lora_scale=lora_scale,
|
| 883 |
+
clip_skip=self.clip_skip,
|
| 884 |
+
text_encoder=self.text_encoder_2,
|
| 885 |
+
data_type=data_type,
|
| 886 |
+
)
|
| 887 |
+
else:
|
| 888 |
+
prompt_embeds_2 = None
|
| 889 |
+
negative_prompt_embeds_2 = None
|
| 890 |
+
prompt_mask_2 = None
|
| 891 |
+
negative_prompt_mask_2 = None
|
| 892 |
+
|
| 893 |
+
# For classifier free guidance, we need to do two forward passes.
|
| 894 |
+
# Here we concatenate the unconditional and text embeddings into a single batch
|
| 895 |
+
# to avoid doing two forward passes
|
| 896 |
+
if self.do_classifier_free_guidance:
|
| 897 |
+
prompt_embeds = torch.cat([negative_prompt_embeds, prompt_embeds])
|
| 898 |
+
if prompt_mask is not None:
|
| 899 |
+
prompt_mask = torch.cat([negative_prompt_mask, prompt_mask])
|
| 900 |
+
if prompt_embeds_2 is not None:
|
| 901 |
+
prompt_embeds_2 = torch.cat([negative_prompt_embeds_2, prompt_embeds_2])
|
| 902 |
+
if prompt_mask_2 is not None:
|
| 903 |
+
prompt_mask_2 = torch.cat([negative_prompt_mask_2, prompt_mask_2])
|
| 904 |
+
|
| 905 |
+
|
| 906 |
+
# 4. Prepare timesteps
|
| 907 |
+
extra_set_timesteps_kwargs = self.prepare_extra_func_kwargs(
|
| 908 |
+
self.scheduler.set_timesteps, {"n_tokens": n_tokens}
|
| 909 |
+
)
|
| 910 |
+
timesteps, num_inference_steps = retrieve_timesteps(
|
| 911 |
+
self.scheduler,
|
| 912 |
+
num_inference_steps,
|
| 913 |
+
device,
|
| 914 |
+
timesteps,
|
| 915 |
+
sigmas,
|
| 916 |
+
**extra_set_timesteps_kwargs,
|
| 917 |
+
)
|
| 918 |
+
|
| 919 |
+
if "884" in vae_ver:
|
| 920 |
+
video_length = (video_length - 1) // 4 + 1
|
| 921 |
+
elif "888" in vae_ver:
|
| 922 |
+
video_length = (video_length - 1) // 8 + 1
|
| 923 |
+
else:
|
| 924 |
+
video_length = video_length
|
| 925 |
+
|
| 926 |
+
# 5. Prepare latent variables
|
| 927 |
+
num_channels_latents = self.transformer.config.in_channels
|
| 928 |
+
latents = self.prepare_latents(
|
| 929 |
+
batch_size * num_videos_per_prompt,
|
| 930 |
+
num_channels_latents,
|
| 931 |
+
height,
|
| 932 |
+
width,
|
| 933 |
+
video_length,
|
| 934 |
+
prompt_embeds.dtype,
|
| 935 |
+
device,
|
| 936 |
+
generator,
|
| 937 |
+
latents,
|
| 938 |
+
)
|
| 939 |
+
|
| 940 |
+
# 6. Prepare extra step kwargs. TODO: Logic should ideally just be moved out of the pipeline
|
| 941 |
+
extra_step_kwargs = self.prepare_extra_func_kwargs(
|
| 942 |
+
self.scheduler.step,
|
| 943 |
+
{"generator": generator, "eta": eta},
|
| 944 |
+
)
|
| 945 |
+
|
| 946 |
+
target_dtype = PRECISION_TO_TYPE[self.args.precision]
|
| 947 |
+
autocast_enabled = (
|
| 948 |
+
target_dtype != torch.float32
|
| 949 |
+
) and not self.args.disable_autocast
|
| 950 |
+
vae_dtype = PRECISION_TO_TYPE[self.args.vae_precision]
|
| 951 |
+
vae_autocast_enabled = (
|
| 952 |
+
vae_dtype != torch.float32
|
| 953 |
+
) and not self.args.disable_autocast
|
| 954 |
+
|
| 955 |
+
# 7. Denoising loop
|
| 956 |
+
num_warmup_steps = len(timesteps) - num_inference_steps * self.scheduler.order
|
| 957 |
+
self._num_timesteps = len(timesteps)
|
| 958 |
+
|
| 959 |
+
# if is_progress_bar:
|
| 960 |
+
with self.progress_bar(total=num_inference_steps) as progress_bar:
|
| 961 |
+
for i, t in enumerate(timesteps):
|
| 962 |
+
if self.interrupt:
|
| 963 |
+
continue
|
| 964 |
+
|
| 965 |
+
# expand the latents if we are doing classifier free guidance
|
| 966 |
+
latent_model_input = (
|
| 967 |
+
torch.cat([latents] * 2)
|
| 968 |
+
if self.do_classifier_free_guidance
|
| 969 |
+
else latents
|
| 970 |
+
)
|
| 971 |
+
latent_model_input = self.scheduler.scale_model_input(
|
| 972 |
+
latent_model_input, t
|
| 973 |
+
)
|
| 974 |
+
|
| 975 |
+
t_expand = t.repeat(latent_model_input.shape[0])
|
| 976 |
+
guidance_expand = (
|
| 977 |
+
torch.tensor(
|
| 978 |
+
[embedded_guidance_scale] * latent_model_input.shape[0],
|
| 979 |
+
dtype=torch.float32,
|
| 980 |
+
device=device,
|
| 981 |
+
).to(target_dtype)
|
| 982 |
+
* 1000.0
|
| 983 |
+
if embedded_guidance_scale is not None
|
| 984 |
+
else None
|
| 985 |
+
)
|
| 986 |
+
|
| 987 |
+
# predict the noise residual
|
| 988 |
+
with torch.autocast(
|
| 989 |
+
device_type="cuda", dtype=target_dtype, enabled=autocast_enabled
|
| 990 |
+
):
|
| 991 |
+
noise_pred = self.transformer( # For an input image (129, 192, 336) (1, 256, 256)
|
| 992 |
+
latent_model_input, # [2, 16, 33, 24, 42]
|
| 993 |
+
t_expand, # [2]
|
| 994 |
+
text_states=prompt_embeds, # [2, 256, 4096]
|
| 995 |
+
text_mask=prompt_mask, # [2, 256]
|
| 996 |
+
text_states_2=prompt_embeds_2, # [2, 768]
|
| 997 |
+
freqs_cos=freqs_cis[0], # [seqlen, head_dim]
|
| 998 |
+
freqs_sin=freqs_cis[1], # [seqlen, head_dim]
|
| 999 |
+
guidance=guidance_expand,
|
| 1000 |
+
return_dict=True,
|
| 1001 |
+
)[
|
| 1002 |
+
"x"
|
| 1003 |
+
]
|
| 1004 |
+
|
| 1005 |
+
# perform guidance
|
| 1006 |
+
if self.do_classifier_free_guidance:
|
| 1007 |
+
noise_pred_uncond, noise_pred_text = noise_pred.chunk(2)
|
| 1008 |
+
noise_pred = noise_pred_uncond + self.guidance_scale * (
|
| 1009 |
+
noise_pred_text - noise_pred_uncond
|
| 1010 |
+
)
|
| 1011 |
+
|
| 1012 |
+
if self.do_classifier_free_guidance and self.guidance_rescale > 0.0:
|
| 1013 |
+
# Based on 3.4. in https://arxiv.org/pdf/2305.08891.pdf
|
| 1014 |
+
noise_pred = rescale_noise_cfg(
|
| 1015 |
+
noise_pred,
|
| 1016 |
+
noise_pred_text,
|
| 1017 |
+
guidance_rescale=self.guidance_rescale,
|
| 1018 |
+
)
|
| 1019 |
+
|
| 1020 |
+
# compute the previous noisy sample x_t -> x_t-1
|
| 1021 |
+
latents = self.scheduler.step(
|
| 1022 |
+
noise_pred, t, latents, **extra_step_kwargs, return_dict=False
|
| 1023 |
+
)[0]
|
| 1024 |
+
|
| 1025 |
+
if callback_on_step_end is not None:
|
| 1026 |
+
callback_kwargs = {}
|
| 1027 |
+
for k in callback_on_step_end_tensor_inputs:
|
| 1028 |
+
callback_kwargs[k] = locals()[k]
|
| 1029 |
+
callback_outputs = callback_on_step_end(self, i, t, callback_kwargs)
|
| 1030 |
+
|
| 1031 |
+
latents = callback_outputs.pop("latents", latents)
|
| 1032 |
+
prompt_embeds = callback_outputs.pop("prompt_embeds", prompt_embeds)
|
| 1033 |
+
negative_prompt_embeds = callback_outputs.pop(
|
| 1034 |
+
"negative_prompt_embeds", negative_prompt_embeds
|
| 1035 |
+
)
|
| 1036 |
+
|
| 1037 |
+
# call the callback, if provided
|
| 1038 |
+
if i == len(timesteps) - 1 or (
|
| 1039 |
+
(i + 1) > num_warmup_steps and (i + 1) % self.scheduler.order == 0
|
| 1040 |
+
):
|
| 1041 |
+
if progress_bar is not None:
|
| 1042 |
+
progress_bar.update()
|
| 1043 |
+
if callback is not None and i % callback_steps == 0:
|
| 1044 |
+
step_idx = i // getattr(self.scheduler, "order", 1)
|
| 1045 |
+
callback(step_idx, t, latents)
|
| 1046 |
+
|
| 1047 |
+
if not output_type == "latent":
|
| 1048 |
+
expand_temporal_dim = False
|
| 1049 |
+
if len(latents.shape) == 4:
|
| 1050 |
+
if isinstance(self.vae, AutoencoderKLCausal3D):
|
| 1051 |
+
latents = latents.unsqueeze(2)
|
| 1052 |
+
expand_temporal_dim = True
|
| 1053 |
+
elif len(latents.shape) == 5:
|
| 1054 |
+
pass
|
| 1055 |
+
else:
|
| 1056 |
+
raise ValueError(
|
| 1057 |
+
f"Only support latents with shape (b, c, h, w) or (b, c, f, h, w), but got {latents.shape}."
|
| 1058 |
+
)
|
| 1059 |
+
|
| 1060 |
+
if (
|
| 1061 |
+
hasattr(self.vae.config, "shift_factor")
|
| 1062 |
+
and self.vae.config.shift_factor
|
| 1063 |
+
):
|
| 1064 |
+
latents = (
|
| 1065 |
+
latents / self.vae.config.scaling_factor
|
| 1066 |
+
+ self.vae.config.shift_factor
|
| 1067 |
+
)
|
| 1068 |
+
else:
|
| 1069 |
+
latents = latents / self.vae.config.scaling_factor
|
| 1070 |
+
|
| 1071 |
+
with torch.autocast(
|
| 1072 |
+
device_type="cuda", dtype=vae_dtype, enabled=vae_autocast_enabled
|
| 1073 |
+
):
|
| 1074 |
+
if enable_tiling:
|
| 1075 |
+
self.vae.enable_tiling()
|
| 1076 |
+
image = self.vae.decode(
|
| 1077 |
+
latents, return_dict=False, generator=generator
|
| 1078 |
+
)[0]
|
| 1079 |
+
else:
|
| 1080 |
+
image = self.vae.decode(
|
| 1081 |
+
latents, return_dict=False, generator=generator
|
| 1082 |
+
)[0]
|
| 1083 |
+
|
| 1084 |
+
if expand_temporal_dim or image.shape[2] == 1:
|
| 1085 |
+
image = image.squeeze(2)
|
| 1086 |
+
|
| 1087 |
+
else:
|
| 1088 |
+
image = latents
|
| 1089 |
+
|
| 1090 |
+
image = (image / 2 + 0.5).clamp(0, 1)
|
| 1091 |
+
# we always cast to float32 as this does not cause significant overhead and is compatible with bfloa16
|
| 1092 |
+
image = image.cpu().float()
|
| 1093 |
+
|
| 1094 |
+
# Offload all models
|
| 1095 |
+
self.maybe_free_model_hooks()
|
| 1096 |
+
|
| 1097 |
+
if not return_dict:
|
| 1098 |
+
return image
|
| 1099 |
+
|
| 1100 |
+
return HunyuanVideoPipelineOutput(videos=image)
|