latentblending/README.md

121 lines
6.8 KiB
Markdown
Raw Normal View History

2023-01-09 15:43:18 +00:00
# Quickstart
2023-11-16 14:47:10 +00:00
Latent blending enables video transitions with incredible smoothness between prompts, computed within seconds. Powered by [stable diffusion XL](https://stability.ai/stable-diffusion), this method involves specific mixing of intermediate latent representations to create a seamless transition with users having the option to fully customize the transition directly in high-resolution.
2023-01-09 08:13:33 +00:00
2023-01-13 16:31:53 +00:00
2023-01-09 08:06:01 +00:00
```python
2023-11-16 14:47:10 +00:00
pretrained_model_name_or_path = "stabilityai/stable-diffusion-xl-base-1.0"
pipe = DiffusionPipeline.from_pretrained(pretrained_model_name_or_path, torch_dtype=torch.float16).to('cuda')
dh = DiffusersHolder(pipe)
lb = LatentBlending(dh)
2023-01-09 08:08:51 +00:00
2023-01-09 08:06:01 +00:00
lb.set_prompt1('photo of my first prompt1')
lb.set_prompt2('photo of my second prompt')
2023-02-20 11:09:37 +00:00
depth_strength = 0.6 # How deep the first branching happens
t_compute_max_allowed = 10 # How much compute time we give to the transition
2023-11-16 14:47:10 +00:00
imgs_transition = lb.run_transition(
depth_strength=depth_strength,
num_inference_steps=num_inference_steps,
t_compute_max_allowed=t_compute_max_allowed)
2023-01-09 08:06:01 +00:00
```
2023-01-09 08:08:51 +00:00
## Gradio UI
2023-11-16 14:47:10 +00:00
Coming soon again :)
2023-01-09 08:06:01 +00:00
## Example 1: Simple transition
2023-01-09 07:58:03 +00:00
![](example1.jpg)
2023-01-09 08:00:24 +00:00
To run a simple transition between two prompts, run `example1_standard.py`
2022-11-21 23:20:07 +00:00
2023-02-20 11:09:37 +00:00
## Example 2: Multi transition
To run multiple transition between K prompts, resulting in a stitched video, run `example2_multitrans.py`.
2023-01-20 12:29:37 +00:00
[View a longer example video here.](https://vimeo.com/789052336/80dcb545b2)
2022-11-21 23:20:07 +00:00
2023-01-09 09:59:00 +00:00
2023-01-09 08:40:01 +00:00
# Customization
## Most relevant parameters
2023-02-20 11:09:37 +00:00
You can find the [most relevant parameters here.](parameters.md)
2023-01-09 08:40:01 +00:00
2023-01-09 08:50:15 +00:00
### Change the height/width
```python
2023-11-16 14:47:10 +00:00
size_output = (1024, 768)
lb.set_dimensions(size_output)
2023-01-09 08:50:15 +00:00
```
### Change guidance scale
```python
lb.set_guidance_scale(5.0)
```
2023-01-09 08:40:01 +00:00
2023-02-20 11:09:37 +00:00
### run_transition parameters
* num_inference_steps: number of diffusions steps.Number of diffusion steps. Higher values will take more compute time.
* depth_strength: The strength of the diffusion iterations determines when the blending process will begin. A value close to zero results in more creative and intricate outcomes, while a value closer to one indicates a simpler alpha blending. However, low values may also bring about the introduction of additional objects and motion.
* t_compute_max_allowed: maximum time allowed for computation. Higher values give better results but take longer. Either provide t_compute_max_allowed or nmb_max_branches.
* nmb_max_branches: The maximum number of branches to be computed. Higher values give better results. Use this if you want to have controllable results independent of your hardware. Either provide t_compute_max_allowed or nmb_max_branches.
2023-01-09 08:40:01 +00:00
2023-02-20 11:09:37 +00:00
### Crossfeeding to the last image.
Cross-feeding latents is a key feature of latent blending. Here, you can set how much the first image branch influences the very last one. In the animation below, these are the blue arrows.
2023-01-09 08:50:15 +00:00
2023-01-09 08:40:01 +00:00
```
2023-02-20 11:09:37 +00:00
crossfeed_power = 0.5 # 50% of the latents in the last branch are copied from branch1
crossfeed_range = 0.7 # The crossfeed is active until 70% of num_iteration, then switched off
crossfeed_decay = 0.2 # The power of the crossfeed decreases over diffusion iterations, here it would be 0.5*0.2=0.1 in the end of the range.
lb.set_branch1_crossfeed(crossfeed_power, crossfeed_range, crossfeed_decay)
2023-01-09 08:50:15 +00:00
```
2023-02-20 11:09:37 +00:00
### Crossfeeding to all transition images
Here, you can set how much the parent branches influence the mixed one. In the animation below, these are the yellow arrows.
2023-01-09 08:50:15 +00:00
2023-02-20 11:09:37 +00:00
```
crossfeed_power = 0.5 # 50% of the latents in the last branch are copied from the parents
crossfeed_range = 0.7 # The crossfeed is active until 70% of num_iteration, then switched off
crossfeed_decay = 0.2 # The power of the crossfeed decreases over diffusion iterations, here it would be 0.5*0.2=0.1 in the end of the range.
lb.set_parental_crossfeed(crossfeed_power, crossfeed_range, crossfeed_decay)
2023-01-09 08:50:15 +00:00
```
2023-02-20 11:09:37 +00:00
2022-12-02 11:42:09 +00:00
# Installation
#### Packages
```commandline
2022-12-02 12:08:17 +00:00
pip install -r requirements.txt
2022-12-02 11:42:09 +00:00
```
2023-01-09 08:17:25 +00:00
2023-01-09 10:53:14 +00:00
# How does latent blending work?
2023-01-09 14:16:56 +00:00
## Method
2022-12-02 11:42:09 +00:00
![](animation.gif)
2022-11-21 23:20:07 +00:00
2023-02-20 11:09:37 +00:00
In the figure above, a diffusion tree is illustrated. The diffusion steps are represented on the y-axis, with temporal blending on the x-axis. The diffusion trajectory for the first prompt is the most left column, which is always computed first. Next, the the trajectory for the second prompt is computed, which may be influenced by the first branch (blue arrows, for a description see above at `Crossfeeding to the last image.`). Finally, all transition images in between are computed. For the transition, there can be an influence of the parents, which helps preserving structures (yellow arrows, for a description see above at `Crossfeeding to all transition images`). Importantly, the place of injection on the x-axis is not hardfixes a priori, but set dynamically using [Perceptual Similarity](https://richzhang.github.io/PerceptualSimilarity), always adding a branch where it is needed most.
2023-01-09 10:53:14 +00:00
2023-02-20 11:09:37 +00:00
The concrete parameters for the transition above would be:
2023-01-09 10:53:14 +00:00
```
2023-02-20 11:09:37 +00:00
lb.set_branch1_crossfeed(crossfeed_power=0.8, crossfeed_range=0.6, crossfeed_decay=0.4)
lb.set_parental_crossfeed(crossfeed_power=0.8, crossfeed_range=0.8, crossfeed_decay=0.2)
imgs_transition = lb.run_transition(num_inference_steps=10, depth_strength=0.2, nmb_max_branches=7)
2023-01-09 10:53:14 +00:00
```
2023-02-20 11:09:37 +00:00
2023-01-09 14:16:56 +00:00
## Perceptual aspects
2023-02-20 11:09:37 +00:00
With latent blending, we can create transitions that appear to defy the laws of nature, yet appear completely natural and believable. The key is to surpress processing in our [dorsal visual stream](https://en.wikipedia.org/wiki/Two-streams_hypothesis#Dorsal_stream), which is achieved by avoiding motion in the transition. Without motion, our visual system has difficulties detecting the transition, leaving viewers with the illusion of a single, continuous image, see [change blindness](https://en.wikipedia.org/wiki/Change_blindness). However, when motion is introduced, the visual system can detect the transition and the viewer becomes aware of the transition, leading to a jarring effect. Therefore, best results will be achieved when optimizing the transition parameters, particularly the crossfeeding parameters and the depth of the first injection.
# Changelog
2023-11-16 14:47:10 +00:00
* SD XL support
* Diffusers backend, greatly simplifing installation and use (bring your own pipe)
2023-02-20 11:09:37 +00:00
* New blending engine with cross-feeding capabilities, enabling structure preserving transitions
* LPIPS image similarity for finding the next best injection branch, resulting in smoother transitions
* Time-based computation: instead of specifying how many frames your transition has, you can tell your compute budget and get a transition within that budget.
* New multi-movie engine
* Simpler and more powerful gradio ui. You can iterate faster and stitch together a multi movie.
* Inpaint support dropped (as it only makes sense for a single transition)
2023-01-09 10:53:14 +00:00
2023-01-11 12:02:49 +00:00
# Coming soon...
2023-11-16 14:47:10 +00:00
- [ ] Gradio interface
2023-02-20 11:09:37 +00:00
- [ ] Huggingface Space
2023-11-16 14:47:10 +00:00
- [ ] Controlnet
- [ ] IP-Adapter
- [ ] Latent Consistency
2023-01-11 12:02:49 +00:00
Stay tuned on twitter: ```@j_stelzer```
Contact: ```stelzer@lunar-ring.ai``` (Johannes Stelzer)
2023-01-09 11:11:35 +00:00