Home

Awesome

FateZero: Fusing Attentions for Zero-shot Text-based Video Editing (ICCV23 Oral')

Chenyang Qi, Xiaodong Cun, Yong Zhang, Chenyang Lei, Xintao Wang, Ying Shan, and Qifeng Chen

<a href='https://arxiv.org/abs/2303.09535'><img src='https://img.shields.io/badge/ArXiv-2303.09535-red'></a> <a href='https://fate-zero-edit.github.io/'><img src='https://img.shields.io/badge/Project-Page-Green'></a> Open In Colab Hugging Face Spaces GitHub

<table class="center"> <td><img src="docs/gif_results/car_posche_local_blend.gif"></td> <td><img src="docs/gif_results/3_sunflower_vangogh_conat_result.gif"></td> <td><img src="docs/gif_results/attri/16_sq_eat_02_concat_result.gif"></td> <tr> <td width=25% style="text-align:center;">"silver jeep ➜ posche car"</td> <td width=25% style="text-align:center;">"+ Van Gogh style"</td> <td width=25% style="text-align:center;">"squirrel,Carrot ➜ rabbit,eggplant"</td> </tr> </table >

🎏 Abstract

<b>TL; DR: <font color="red">FateZero</font> is the first zero-shot framework for text-driven video editing via pretrained diffusion models without training.</b>

<details><summary>CLICK for the full abstract</summary>

The diffusion-based generative models have achieved remarkable success in text-based image generation. However, since it contains enormous randomness in generation progress, it is still challenging to apply such models for real-world visual content editing, especially in videos. In this paper, we propose <font color="red">FateZero</font>, a zero-shot text-based editing method on real-world videos without per-prompt training or use-specific mask. To edit videos consistently, we propose several techniques based on the pre-trained models. Firstly, in contrast to the straightforward DDIM inversion technique, our approach captures intermediate attention maps during inversion, which effectively retain both structural and motion information. These maps are directly fused in the editing process rather than generated during denoising. To further minimize semantic leakage of the source video, we then fuse self-attentions with a blending mask obtained by cross-attention features from the source prompt. Furthermore, we have implemented a reform of the self-attention mechanism in denoising UNet by introducing spatial-temporal attention to ensure frame consistency. Yet succinct, our method is the first one to show the ability of zero-shot text-driven video style and local attribute editing from the trained text-to-image model. We also have a better zero-shot shape-aware editing ability based on the text-to-video model. Extensive experiments demonstrate our superior temporal consistency and editing capability than previous works.

</details>

πŸ“‹ Changelog

<!-- - 2023.04.18 Code refactoring. Release a config with optional local blending [here](config/teaser/jeep_posche_local_latent_blend.yaml) using `blend_latents` option. --> <!-- - 2023.03.27 Excited to Release [`Hugging face demo`](https://huggingface.co/spaces/chenyangqi/FateZero)! (refinement is in progress) Enjoy the fun of zero-shot video editing freely! - 2023.03.27 Release [`attribute editing config`](config/attribute) and [`data`](https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/attribute.zip) used in the paper. --> <!-- used in the paper. Enjoy the fun of zero-shot video editing freely! --> <!-- - 2023.03.27 Release [`attribute editing config`](config/attribute) and --> <!-- [`data`](https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/attribute.zip) used in the paper. --> <!-- - 2023.03.22 Upload a `colab notebook` [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/ChenyangQiQi/FateZero/blob/main/colab_fatezero.ipynb). - 2023.03.22 Release [`style editing config`](config/style) and <!--[`data`](https://hkustconnect-my.sharepoint.com/:u:/g/personal/cqiaa_connect_ust_hk/EaTqRAuW0eJLj0z_JJrURkcBZCC3Zvgsdo6zsXHhpyHhHQ?e=FzuiNG) --> <!-- [`data`](https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/style.zip) used in the paper. --> <!-- - in `config/low_resource_teaser`. --> <!-- - Welcome to play and give feedback! --> <!-- A new option store all the attentions in hard disk, which require less ram. -->

🚧 Todo

<details><summary>Click for Previous todos </summary> </details>

πŸ›‘ Setup Environment

Our method is tested using cuda11, fp16 of accelerator and xformers on a single A100 or 3090.

conda create -n fatezero38 python=3.8
conda activate fatezero38

pip install -r requirements.txt

xformers is recommended for A100 GPU to save memory and running time.

<details><summary>Click for xformers installation </summary>

We find its installation not stable. You may try the following wheel:

wget https://github.com/ShivamShrirao/xformers-wheels/releases/download/4c06c79/xformers-0.0.15.dev0+4c06c79.d20221201-cp38-cp38-linux_x86_64.whl
pip install xformers-0.0.15.dev0+4c06c79.d20221201-cp38-cp38-linux_x86_64.whl
</details>

Validate the installation by

python test_install.py

You may download all data and checkpoints using the following bash command

bash download_all.sh

The above command take minutes and 100GB. Or you may download the required data and ckpts latter according to your interests.

Our environment is similar to Tune-A-video (official, unofficial) and prompt-to-prompt. You may check them for more details.

βš”οΈ FateZero Editing

Style and Attribute Editing in Teaser

Download the stable diffusion v1-4 (or other interesting image diffusion model) and put it to ./ckpt/stable-diffusion-v1-4.

<details><summary>Click for the bash command: </summary>
mkdir ./ckpt
cd ./ckpt
# download from huggingface face, takes 20G space
git lfs install
git clone https://huggingface.co/CompVis/stable-diffusion-v1-4
</details>

Then, you could reproduce style and shape editing results in our teaser by running:

accelerate launch test_fatezero.py --config config/teaser/jeep_watercolor.yaml
# or CUDA_VISIBLE_DEVICES=0 python test_fatezero.py --config config/teaser/jeep_watercolor.yaml
<details><summary>The result is saved at `./result` . (Click for directory structure) </summary>
result
β”œβ”€β”€ teaser
β”‚   β”œβ”€β”€ jeep_posche
β”‚   β”œβ”€β”€ jeep_watercolor
β”‚           β”œβ”€β”€ cross-attention  # visualization of cross-attention during inversion
β”‚           β”œβ”€β”€ sample           # result
β”‚           β”œβ”€β”€ train_samples    # the input video

</details>

Editing 8 frames on an Nvidia 3090, use 100G CPU memory, 12G GPU memory for editing. We also provide some low-cost setting of style editing by different hyper-parameters on a 16GB GPU. You may try these low-cost settings on colab. Open In Colab

More speed and hardware benchmarks are here.

Shape and large motion editing with Tune-A-Video

Besides style and attribution editing above, we also provide a Tune-A-Video checkpoint. You may download from onedrive or from hugging face model repository. Then move it to ./ckpt/jeep_tuned_200/.

<details><summary>Click for the bash command: </summary>
mkdir ./ckpt
cd ./ckpt
# download from huggingface face, takes 10G space
git lfs install
git clone https://huggingface.co/chenyangqi/jeep_tuned_200
</details> <details><summary>The directory structure should be like this: (Click for directory structure) </summary>
ckpt
β”œβ”€β”€ stable-diffusion-v1-4
β”œβ”€β”€ jeep_tuned_200
...
data
β”œβ”€β”€ car-turn
β”‚   β”œβ”€β”€ 00000000.png
β”‚   β”œβ”€β”€ 00000001.png
β”‚   β”œβ”€β”€ ...
video_diffusion
</details>

You could reproduce the shape editing result in our teaser by running:

accelerate launch test_fatezero.py --config config/teaser/jeep_posche.yaml

Reproduce other results in the paper

<!-- Download the data of [style editing](https://hkustconnect-my.sharepoint.com/:u:/g/personal/cqiaa_connect_ust_hk/EaTqRAuW0eJLj0z_JJrURkcBZCC3Zvgsdo6zsXHhpyHhHQ?e=FzuiNG) and [attribute editing](https://hkustconnect-my.sharepoint.com/:u:/g/personal/cqiaa_connect_ust_hk/Ee7J2IzZuaVGkefh-ZRp1GwB7RCUYU7MVJCKqeNWmOIpfg?e=dcOwb7) -->

Download the data from onedrive or from Github Release.

<details><summary>Click for wget bash command: </summary>
wget https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/attribute.zip
wget https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/style.zip
wget https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/shape.zip
</details>

Unzip and Place it in './data'. Then use the commands in 'config/style' and 'config/attribute' to get the results.

To reproduce other shape editing results, download Tune-A-Video checkpoints from huggingface :

<details><summary>Click for the bash command: </summary>
mkdir ./ckpt
cd ./ckpt
# download from huggingface face, takes 10G space
git lfs install
git clone https://huggingface.co/chenyangqi/man_skate_250
git clone https://huggingface.co/chenyangqi/swan_150
</details>

Then use the commands in 'config/shape'.

For above Tune-A-Video checkpoints, we fintune stable diffusion with a synthetic negative-prompt dataset for regularization and low-rank conovlution for temporal-consistent generation using tuning config

<details><summary>Click for the bash command example: </summary>
cd ./data
wget https://github.com/ChenyangQiQi/FateZero/releases/download/v0.0.1/negative_reg.zip
unzip negative_reg
cd ..
accelerate launch train_tune_a_video.py --config config/tune/jeep.yaml

To evaluate our results quantitatively, we provide CLIP/frame_acc_tem_con.py to calculate frame accuracy and temporal consistency using pretrained CLIP.

</details>

Editing guidance for YOUR video

We provided a editing guidance for in-the-wild video here. The work is still in progress. Welcome to give your feedback in issues.

Style Editing Results with Stable Diffusion

We show the difference between the source prompt and the target prompt in the box below each video.

Note mp4 and gif files in this GitHub page are compressed. Please check our Project Page for mp4 files of original video editing results.

<table class="center"> <tr> <td><img src="docs/gif_results/style/1_surf_ukiyo_01_concat_result.gif"></td> <td><img src="docs/gif_results/style/2_car_watercolor_01_concat_result.gif"></td> <td><img src="docs/gif_results/style/6_lily_monet_01_concat_result.gif"></td> <!-- <td><img src="https://tuneavideo.github.io/assets/results/tuneavideo/man-skiing/wonder-woman.gif"></td> <td><img src="https://tuneavideo.github.io/assets/results/tuneavideo/man-skiing/pink-sunset.gif"></td> --> </tr> <tr> <td width=25% style="text-align:center;">"+ Ukiyo-e style"</td> <td width=25% style="text-align:center;">"+ watercolor painting"</td> <td width=25% style="text-align:center;">"+ Monet style"</td> </tr> <tr> <td><img src="docs/gif_results/style/4_rabit_pokemon_01_concat_result.gif"></td> <td><img src="docs/gif_results/style/5_train_shikai_01_concat_result.gif"></td> <td><img src="docs/gif_results/style/parkour_watercolor_0_-1.gif"></td> </tr> <tr> </tr> <tr> <td width=25% style="text-align:center;">"+ PokΓ©mon cartoon style"</td> <td width=25% style="text-align:center;">"+ Makoto Shinkai style"</td> <td width=25% style="text-align:center;">"+ watercolor painting"</td> </tr> </table>

Attribute Editing Results with Stable Diffusion

<table class="center"> <tr> <td><img src="docs/gif_results/attri/15_rabbit_eat_01_concat_result.gif"></td> <td><img src="docs/gif_results/attri/15_rabbit_eat_02_concat_result.gif"></td> <td><img src="docs/gif_results/attri/15_rabbit_eat_04_concat_result.gif"></td> </tr> <tr> <td width=25% style="text-align:center;">"rabbit, strawberry ➜ white rabbit, flower"</td> <td width=25% style="text-align:center;">"rabbit, strawberry ➜ squirrel, carrot"</td> <td width=25% style="text-align:center;">"rabbit, strawberry ➜ white rabbit, leaves"</td> </tr> <tr> <td><img src="docs/gif_results/attri/13_bear_tiger_leopard_lion_01_concat_result.gif"></td> <td><img src="docs/gif_results/attri/13_bear_tiger_leopard_lion_02_concat_result.gif"></td> <td><img src="docs/gif_results/attri/13_bear_tiger_leopard_lion_03_concat_result.gif"></td> </tr> <tr> <td width=25% style="text-align:center;">"bear ➜ a red tiger"</td> <td width=25% style="text-align:center;">"bear ➜ a yellow leopard"</td> <td width=25% style="text-align:center;">"bear ➜ a brown lion"</td> </tr> <tr> <td><img src="docs/gif_results/attri/14_cat_grass_tiger_corgin_02_concat_result.gif"></td> <td><img src="docs/gif_results/attri/14_cat_grass_tiger_corgin_03_concat_result.gif"></td> <td><img src="docs/gif_results/attri/14_cat_grass_tiger_corgin_04_concat_result.gif"></td> </tr> <tr> <td width=25% style="text-align:center;">"cat ➜ black cat, grass..."</td> <td width=25% style="text-align:center;">"cat ➜ red tiger"</td> <td width=25% style="text-align:center;">"cat ➜ Shiba-Inu"</td> </tr> <tr> <td><img src="docs/gif_results/attri/goldfish_yellow.gif"></td> <td><img src="docs/gif_results/attri/16_sq_eat_04_concat_result.gif"></td> <td><img src="docs/gif_results/attri/16_sq_eat_03_concat_result.gif"></td> </tr> <tr> <td width=25% style="text-align:center;">"orange fish ➜ yellow fish"</td> <td width=25% style="text-align:center;">"squirrel ➜ robot squirrel"</td> <td width=25% style="text-align:center;">"squirrel, Carrot ➜ robot mouse, screwdriver"</td> </tr> <tr> <td><img src="docs/gif_results/attri/10_bus_gpu_01_concat_result.gif"></td> <td><img src="docs/gif_results/attri/11_dog_robotic_corgin_01_concat_result.gif"></td> <td><img src="docs/gif_results/attri/11_dog_robotic_corgin_02_concat_result.gif"></td> </tr> <tr> <td width=25% style="text-align:center;">"bus ➜ GPU"</td> <td width=25% style="text-align:center;">"gray dog ➜ yellow corgi"</td> <td width=25% style="text-align:center;">"gray dog ➜ robotic dog"</td> </tr> <tr> <td><img src="docs/gif_results/attri/9_duck_rubber_01_concat_result.gif"></td> <td><img src="docs/gif_results/attri/12_fox_snow_wolf_01_concat_result.gif"></td> <td><img src="docs/gif_results/attri/12_fox_snow_wolf_02_concat_result.gif"></td> </tr> <tr> <td width=25% style="text-align:center;">"white duck ➜ yellow rubber duck"</td> <td width=25% style="text-align:center;">"grass ➜ snow"</td> <td width=25% style="text-align:center;">"white fox ➜ grey wolf"</td> </tr> </table>

Shape and large motion editing with Tune-A-Video

<table class="center"> <tr> <td><img src="docs/gif_results/shape/17_car_posche_01_concat_result.gif"></td> <td><img src="docs/gif_results/shape/18_swan_01_concat_result.gif"></td> <td><img src="docs/gif_results/shape/18_swan_02_concat_result.gif"></td> <!-- <td><img src="https://tuneavideo.github.io/assets/results/tuneavideo/man-skiing/wonder-woman.gif"></td> <td><img src="https://tuneavideo.github.io/assets/results/tuneavideo/man-skiing/pink-sunset.gif"></td> --> </tr> <tr> <td width=25% style="text-align:center;">"silver jeep ➜ posche car"</td> <td width=25% style="text-align:center;">"Swan ➜ White Duck"</td> <td width=25% style="text-align:center;">"Swan ➜ Pink flamingo"</td> </tr> <tr> <td><img src="docs/gif_results/shape/19_man_wonder_01_concat_result.gif"></td> <td><img src="docs/gif_results/shape/19_man_wonder_02_concat_result.gif"></td> <td><img src="docs/gif_results/shape/19_man_wonder_03_concat_result.gif"></td> </tr> <tr> </tr> <tr> <td width=25% style="text-align:center;">"A man ➜ A Batman"</td> <td width=25% style="text-align:center;">"A man ➜ A Wonder Woman, With cowboy hat"</td> <td width=25% style="text-align:center;">"A man ➜ A Spider-Man"</td> </tr> </table>

πŸ•Ή Online Demo

Thanks to AK and the team from Hugging Face for providing computing resources to support our Hugging-face Demo, which supports up to 30 steps DDIM steps. Hugging Face Spaces.

You may use the UI for testing FateZero built with gradio locally.

git clone https://huggingface.co/spaces/chenyangqi/FateZero
python app_fatezero.py
# we will merge the FateZero on hugging face with that in github repo latter

We also provide a Colab demo, which supports 10 DDIM steps. Open In Colab You may launch the colab as a jupyter notebook on your local machine. We will refine and optimize the above demos in the following days.

πŸ“€ Demo Video

https://user-images.githubusercontent.com/45789244/225698509-79c14793-3153-4bba-9d6e-ede7d811d7f8.mp4

The video here is compressed due to the size limit of GitHub. The original full-resolution video is here.

πŸ“ Citation

@article{qi2023fatezero,
      title={FateZero: Fusing Attentions for Zero-shot Text-based Video Editing}, 
      author={Chenyang Qi and Xiaodong Cun and Yong Zhang and Chenyang Lei and Xintao Wang and Ying Shan and Qifeng Chen},
      year={2023},
      journal={arXiv:2303.09535},
}

πŸ’— Acknowledgements

This repository borrows heavily from Tune-A-Video and prompt-to-prompt. Thanks to the authors for sharing their code and models.

🧿 Maintenance

This is the codebase for our research work. We are still working hard to update this repo, and more details are coming in days. If you have any questions or ideas to discuss, feel free to contact Chenyang Qi or Xiaodong Cun.