Spaces:
Running
on
Zero
Running
on
Zero
File size: 9,063 Bytes
0bbe342 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
<div align="center">
# Taming Rectified Flow for Inversion and Editing
[Jiangshan Wang](https://scholar.google.com/citations?user=HoKoCv0AAAAJ&hl=en)<sup>1,2</sup>, [Junfu Pu](https://pujunfu.github.io/)<sup>2</sup>, [Zhongang Qi](https://scholar.google.com/citations?hl=en&user=zJvrrusAAAAJ&view_op=list_works&sortby=pubdate)<sup>2</sup>, [Jiayi Guo](https://www.jiayiguo.net)<sup>1</sup>, [Yue Ma](https://mayuelala.github.io/)<sup>3</sup>, <br> [Nisha Huang](https://scholar.google.com/citations?user=wTmPkSsAAAAJ&hl=en)<sup>1</sup>, [Yuxin Chen](https://scholar.google.com/citations?hl=en&user=dEm4OKAAAAAJ)<sup>2</sup>, [Xiu Li](https://scholar.google.com/citations?user=Xrh1OIUAAAAJ&hl=en&oi=ao)<sup>1</sup>, [Ying Shan](https://scholar.google.com/citations?hl=en&user=4oXBp9UAAAAJ&view_op=list_works&sortby=pubdate)<sup>2</sup>
<sup>1</sup> Tsinghua University, <sup>2</sup> Tencent ARC Lab, <sup>3</sup> HKUST
[![arXiv](https://img.shields.io/badge/arXiv-RFSolverEdit-b31b1b.svg)](https://arxiv.org/abs/2411.04746)
<a href='https://rf-solver-edit.github.io/'><img src='https://img.shields.io/badge/Project-Page-Green'></a>
</div>
<p>
We propose <strong>RF-Solver</strong> to solve the rectified flow ODE with less error, thus enhancing both sampling quality and inversion-reconstruction accuracy for rectified-flow-based generative models. Furthermore, we propose <strong>RF-Edit</strong> to leverage the <strong>RF-Solver</strong> for image and video editing tasks. Our methods achieve impressive performance on various tasks, including text-to-image generation, image/video inversion, and image/video editing.
</p>
<p align="center">
<img src="assets/repo_figures/Picture1.jpg" width="1080px"/>
</p>
# π₯ News
- [2024.11.18] More examples for style transfer are available!
- [2024.11.18] Gradio Demo for image editing is available!
- [2024.11.11] The homepage of the project is available!
- [2024.11.08] Code for image editing is released!
- [2024.11.08] Paper released!
# π¨βπ» ToDo
- βοΈ Release the gradio demo
- βοΈ Release scripts to for more image editing cases
- β Release the code for video editing
# π Method
## RF-Solver
<p>
<img src="assets/repo_figures/Picture2.jpg" width="1080px"/>
We derive the exact formulation of the solution for Rectified Flow ODE. The non-linear part in this solution is processed by Taylor Expansion. Through higher order expansion, the approximation error in the solution is significantly reduced, thus achieving impressive performance on both text-to-image sampling and image/video inversion.
</p>
## RF-Edit
<p>
<img src="assets/repo_figures/Picture3.jpg" width="1080px"/>
Based on RF-Solver, we further propose the RF-Edit for image and video editing. RF-Edit framework leverages the features from inversion in the denoising process, which enables high-quality editing while preserving the structual information of source image/video. RF-Edit contains two sub-modules, espectively for image editing and video editing.
</p>
# π οΈ Code Setup
The environment of our code is the same as FLUX, you can refer to the [official repo](https://github.com/black-forest-labs/flux/tree/main) of FLUX, or running the following command to construct the environment.
```
conda create --name RF-Solver-Edit python=3.10
conda activate RF-Solver-Edit
pip install -e ".[all]"
```
# π Examples for Image Editing
We have provided several scripts to reproduce the results in the paper, mainly including 3 types of editing: Stylization, Adding, Replacing. We suggest to run the experiment on a single A100 GPU.
## Stylization
<table class="center">
<tr>
<td width=10% align="center">Ref Style</td>
<td width=30% align="center"><img src="assets/repo_figures/examples/source/nobel.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/source/art.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/source/cartoon.jpg" raw=true></td>
</tr>
<tr>
<td width="10%" align="center">Editing Scripts</td>
<td width="30%" align="center"><a href="src/run_nobel_trump.sh">Trump</a></td>
<td width="30%" align="center"><a href="src/run_art_mari.sh"> Marilyn Monroe</a></td>
<td width="30%" align="center"><a href="src/run_cartoon_ein.sh">Einstein</a></td>
</tr>
<tr>
<td width=10% align="center">Edtied image</td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/nobel_Trump.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/art_mari.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/cartoon_ein.jpg" raw=true></td>
</tr>
<tr>
<td width="10%" align="center">Editing Scripts</td>
<td width="30%" align="center"><a href="src/run_nobel_biden.sh">Biden</a></td>
<td width="30%" align="center"><a href="src/run_art_batman.sh">Batman</a></td>
<td width="30%" align="center"><a href="src/run_cartoon_herry.sh">Herry Potter</a></td>
</tr>
<tr>
<td width=10% align="center">Edtied image</td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/nobel_Biden.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/art_batman.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/cartoon_herry.jpg" raw=true></td>
</tr>
</table>
## Adding & Replacing
<table class="center">
<tr>
<td width=10% align="center">Source image</td>
<td width=30% align="center"><img src="assets/repo_figures/examples/source/hiking.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/source/horse.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/source/boy.jpg" raw=true></td>
</tr>
<tr>
<td width="10%" align="center">Editing Scripts</td>
<td width="30%" align="center"><a href="src/run_boy.sh">+ hiking stick</a></td>
<td width="30%" align="center"><a href="src/run_horse.sh">horse -> camel</a></td>
<td width="30%" align="center"><a href="src/run_boy.sh">+ dog</a></td>
</tr>
<tr>
<td width=10% align="center">Edtied image</td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/hiking.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/horse.jpg" raw=true></td>
<td width=30% align="center"><img src="assets/repo_figures/examples/edit/boy.jpg" raw=true></td>
</tr>
</table>
# πͺ Edit Your Own Image
## Gradio Demo
We privide the gradio demo for image editing. Run the following command:
```
cd src
python gradio_demo.py
```
Here is an example for using the gradio demo to edit an image! Note that here "Number of inject steps" means the steps of feature sharing in RF-Edit, which is highly related to the quality of edited results. We suggest to tune this parameter, selecting the results with best visual quality.
<div style="text-align: center;">
<img src="assets/repo_figures/Picture7.jpg" style="width:100%; display: block; margin: 0 auto;" />
</div>
## Command Line
You can also run the following scripts to edit your own image.
```
cd src
python edit.py --source_prompt [describe the content of your image or leaves it as null] \
--target_prompt [describe your editing requirements] \
--guidance 2 \
--source_img_dir [the path of your source image] \
--num_steps 30 \
--inject [typically set to a number between 2 to 8] \
--name 'flux-dev' --offload \
--output_dir [output path]
```
Similarly, The ```--inject``` refers to the steps of feature sharing in RF-Edit, which is highly related to the performance of editing.
# πΌοΈ Gallery
## Inversion and Reconstruction
<p align="center">
<img src="assets/repo_figures/Picture4.jpg" width="1080px"/>
</p>
## Image Stylization
<p align="center">
<img src="assets/repo_figures/Picture8.jpg" width="1080px"/>
</p>
## Image Editing
<p align="center">
<img src="assets/repo_figures/Picture5.jpg" width="1080px"/>
</p>
## Video Editing
<p align="center">
<img src="assets/repo_figures/Picture6.jpg" width="1080px"/>
</p>
# ποΈ Citation
If you find our work helpful, please **star π** this repo and **cite π** our paper. Thanks for your support!
```
@article{wang2024taming,
title={Taming Rectified Flow for Inversion and Editing},
author={Wang, Jiangshan and Pu, Junfu and Qi, Zhongang and Guo, Jiayi and Ma, Yue and Huang, Nisha and Chen, Yuxin and Li, Xiu and Shan, Ying},
journal={arXiv preprint arXiv:2411.04746},
year={2024}
}
```
# Acknowledgements
We thank [FLUX](https://github.com/black-forest-labs/flux/tree/main) for their clean codebase.
# Contact
The code in this repository is still being reorganized. Errors that may arise during the organizing process could lead to code malfunctions or discrepancies from the original research results. If you have any questions or concerns, please send email to wjs23@mails.tsinghua.edu.cn. |