latentblending/gradio_ui.py

407 lines
19 KiB
Python
Raw Normal View History

2023-01-08 09:33:45 +00:00
# Copyright 2022 Lunar Ring. All rights reserved.
2023-01-11 11:58:59 +00:00
# Written by Johannes Stelzer, email stelzer@lunar-ring.ai twitter @j_stelzer
2023-01-08 09:33:45 +00:00
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os, sys
import torch
torch.backends.cudnn.benchmark = False
import numpy as np
import warnings
warnings.filterwarnings('ignore')
import warnings
import torch
from tqdm.auto import tqdm
from PIL import Image
import torch
2023-01-15 15:52:42 +00:00
from movie_util import MovieSaver, concatenate_movies
2023-01-08 09:33:45 +00:00
from typing import Callable, List, Optional, Union
2023-01-12 09:16:31 +00:00
from latent_blending import get_time, yml_save, LatentBlending, add_frames_linear_interp, compare_dicts
2023-01-08 09:33:45 +00:00
from stable_diffusion_holder import StableDiffusionHolder
torch.set_grad_enabled(False)
import gradio as gr
import copy
2023-02-16 10:48:45 +00:00
from dotenv import find_dotenv, load_dotenv
2023-02-18 06:56:30 +00:00
import shutil
2023-01-08 09:33:45 +00:00
2023-02-18 06:56:30 +00:00
"""
never hit compute trans -> multi movie add fail
"""
2023-01-08 09:33:45 +00:00
2023-01-15 11:02:11 +00:00
2023-01-08 09:33:45 +00:00
#%%
class BlendingFrontend():
2023-01-12 03:11:56 +00:00
def __init__(self, sdh=None):
2023-02-18 06:56:30 +00:00
self.num_inference_steps = 30
2023-01-12 03:11:56 +00:00
if sdh is None:
self.use_debug = True
2023-02-18 06:56:30 +00:00
self.height = 768
self.width = 768
2023-01-12 03:11:56 +00:00
else:
self.use_debug = False
self.lb = LatentBlending(sdh)
2023-02-18 06:56:30 +00:00
self.lb.sdh.num_inference_steps = self.num_inference_steps
self.height = self.lb.sdh.height
self.width = self.lb.sdh.width
self.init_save_dir()
self.save_empty_image()
2023-02-20 10:21:49 +00:00
self.share = True
2023-02-20 07:29:21 +00:00
self.transition_can_be_computed = False
2023-01-08 09:33:45 +00:00
self.depth_strength = 0.25
2023-02-18 06:56:30 +00:00
self.seed1 = 420
2023-01-08 09:33:45 +00:00
self.seed2 = 420
self.guidance_scale = 4.0
self.guidance_scale_mid_damper = 0.5
self.mid_compression_scaler = 1.2
2023-01-08 10:48:44 +00:00
self.prompt1 = ""
self.prompt2 = ""
self.negative_prompt = ""
2023-01-08 09:33:45 +00:00
self.state_current = {}
2023-02-20 07:29:21 +00:00
self.branch1_crossfeed_power = self.lb.branch1_crossfeed_power
self.branch1_crossfeed_range = self.lb.branch1_crossfeed_range
self.branch1_crossfeed_decay = self.lb.branch1_crossfeed_decay
self.parental_crossfeed_power = self.lb.parental_crossfeed_power
self.parental_crossfeed_range = self.lb.parental_crossfeed_range
self.parental_crossfeed_power_decay = self.lb.parental_crossfeed_power_decay
2023-01-09 08:58:26 +00:00
self.fps = 30
2023-02-16 10:48:45 +00:00
self.duration_video = 10
self.t_compute_max_allowed = 10
2023-01-15 15:52:42 +00:00
self.list_fp_imgs_current = []
self.current_timestamp = None
2023-02-17 09:50:57 +00:00
self.recycle_img1 = False
self.recycle_img2 = False
2023-02-18 06:56:30 +00:00
self.fp_img1 = None
self.fp_img2 = None
self.multi_idx_current = -1
self.list_imgs_shown_last = 5*[self.fp_img_empty]
2023-02-20 07:29:21 +00:00
self.list_all_segments = []
self.dp_session = ""
2023-02-16 10:48:45 +00:00
def init_save_dir(self):
load_dotenv(find_dotenv(), verbose=False)
2023-02-20 07:29:21 +00:00
self.dp_out = os.getenv("DIR_OUT")
2023-02-19 14:46:02 +00:00
if self.dp_out is None:
2023-02-16 10:48:45 +00:00
self.dp_out = ""
2023-02-18 06:56:30 +00:00
self.dp_imgs = os.path.join(self.dp_out, "imgs")
os.makedirs(self.dp_imgs, exist_ok=True)
self.dp_movies = os.path.join(self.dp_out, "movies")
os.makedirs(self.dp_movies, exist_ok=True)
2023-02-16 10:48:45 +00:00
2023-01-15 15:52:42 +00:00
# make dummy image
2023-02-15 17:21:00 +00:00
def save_empty_image(self):
2023-02-18 06:56:30 +00:00
self.fp_img_empty = os.path.join(self.dp_imgs, 'empty.jpg')
2023-01-15 15:52:42 +00:00
Image.fromarray(np.zeros((self.height, self.width, 3), dtype=np.uint8)).save(self.fp_img_empty, quality=5)
2023-01-08 09:33:45 +00:00
def randomize_seed1(self):
2023-02-20 07:29:21 +00:00
# Dont randomize seed if we are in a multi concat mode. we don't want to change this one otherwise the movie breaks
if len(self.list_all_segments) > 0:
seed = self.seed1
else:
seed = np.random.randint(0, 10000000)
2023-02-15 17:21:00 +00:00
self.seed1 = int(seed)
2023-01-08 09:33:45 +00:00
print(f"randomize_seed1: new seed = {self.seed1}")
return seed
def randomize_seed2(self):
seed = np.random.randint(0, 10000000)
2023-02-15 17:21:00 +00:00
self.seed2 = int(seed)
2023-01-08 09:33:45 +00:00
print(f"randomize_seed2: new seed = {self.seed2}")
return seed
2023-02-15 17:21:00 +00:00
def setup_lb(self, list_ui_elem):
# Collect latent blending variables
2023-01-08 09:33:45 +00:00
self.state_current = self.get_state_dict()
2023-02-15 17:21:00 +00:00
self.lb.set_width(list_ui_elem[list_ui_keys.index('width')])
self.lb.set_height(list_ui_elem[list_ui_keys.index('height')])
self.lb.set_prompt1(list_ui_elem[list_ui_keys.index('prompt1')])
self.lb.set_prompt2(list_ui_elem[list_ui_keys.index('prompt2')])
self.lb.set_negative_prompt(list_ui_elem[list_ui_keys.index('negative_prompt')])
self.lb.guidance_scale = list_ui_elem[list_ui_keys.index('guidance_scale')]
self.lb.guidance_scale_mid_damper = list_ui_elem[list_ui_keys.index('guidance_scale_mid_damper')]
2023-02-17 09:50:57 +00:00
self.t_compute_max_allowed = list_ui_elem[list_ui_keys.index('duration_compute')]
2023-02-15 17:21:00 +00:00
self.lb.num_inference_steps = list_ui_elem[list_ui_keys.index('num_inference_steps')]
self.lb.sdh.num_inference_steps = list_ui_elem[list_ui_keys.index('num_inference_steps')]
self.duration_video = list_ui_elem[list_ui_keys.index('duration_video')]
2023-02-19 14:59:21 +00:00
self.lb.seed1 = list_ui_elem[list_ui_keys.index('seed1')] #seed
2023-02-15 17:21:00 +00:00
self.lb.seed2 = list_ui_elem[list_ui_keys.index('seed2')]
2023-02-20 07:29:21 +00:00
self.lb.branch1_crossfeed_power = list_ui_elem[list_ui_keys.index('branch1_crossfeed_power')]
self.lb.branch1_crossfeed_range = list_ui_elem[list_ui_keys.index('branch1_crossfeed_range')]
self.lb.branch1_crossfeed_decay = list_ui_elem[list_ui_keys.index('branch1_crossfeed_decay')]
self.lb.parental_crossfeed_power = list_ui_elem[list_ui_keys.index('parental_crossfeed_power')]
self.lb.parental_crossfeed_range = list_ui_elem[list_ui_keys.index('parental_crossfeed_range')]
self.lb.parental_crossfeed_power_decay = list_ui_elem[list_ui_keys.index('parental_crossfeed_power_decay')]
2023-02-19 14:46:02 +00:00
self.num_inference_steps = list_ui_elem[list_ui_keys.index('num_inference_steps')]
self.depth_strength = list_ui_elem[list_ui_keys.index('depth_strength')]
2023-02-16 10:48:45 +00:00
2023-02-15 17:21:00 +00:00
def compute_img1(self, *args):
list_ui_elem = args
self.setup_lb(list_ui_elem)
2023-02-18 06:56:30 +00:00
self.fp_img1 = os.path.join(self.dp_imgs, f"img1_{get_time('second')}.jpg")
2023-02-15 17:21:00 +00:00
img1 = Image.fromarray(self.lb.compute_latents1(return_image=True))
2023-02-18 06:56:30 +00:00
img1.save(self.fp_img1)
2023-02-17 09:50:57 +00:00
self.recycle_img1 = True
self.recycle_img2 = False
2023-02-18 06:56:30 +00:00
return [self.fp_img1, self.fp_img_empty, self.fp_img_empty, self.fp_img_empty, self.fp_img_empty]
2023-02-15 17:21:00 +00:00
def compute_img2(self, *args):
2023-02-20 07:29:21 +00:00
if self.fp_img1 is None: # don't do anything
return [self.fp_img_empty, self.fp_img_empty, self.fp_img_empty, self.fp_img_empty]
2023-02-15 17:21:00 +00:00
list_ui_elem = args
self.setup_lb(list_ui_elem)
2023-02-18 06:56:30 +00:00
self.fp_img2 = os.path.join(self.dp_imgs, f"img2_{get_time('second')}.jpg")
2023-02-15 17:21:00 +00:00
img2 = Image.fromarray(self.lb.compute_latents2(return_image=True))
2023-02-18 06:56:30 +00:00
img2.save(self.fp_img2)
2023-02-17 09:50:57 +00:00
self.recycle_img2 = True
2023-02-20 07:29:21 +00:00
self.transition_can_be_computed = True
2023-02-18 06:56:30 +00:00
return [self.fp_img_empty, self.fp_img_empty, self.fp_img_empty, self.fp_img2]
2023-02-15 17:21:00 +00:00
def compute_transition(self, *args):
2023-02-17 09:50:57 +00:00
2023-02-20 07:29:21 +00:00
if not self.transition_can_be_computed:
list_return = [self.fp_img_empty, self.fp_img_empty, self.fp_img_empty, self.fp_img_empty]
return list_return
2023-02-17 09:50:57 +00:00
2023-02-15 17:21:00 +00:00
list_ui_elem = args
self.setup_lb(list_ui_elem)
2023-02-20 07:29:21 +00:00
print("STARTING TRANSITION...")
2023-01-08 09:33:45 +00:00
if self.use_debug:
list_imgs = [(255*np.random.rand(self.height,self.width,3)).astype(np.uint8) for l in range(5)]
list_imgs = [Image.fromarray(l) for l in list_imgs]
print("DONE! SENDING BACK RESULTS")
2023-01-08 09:33:45 +00:00
return list_imgs
2023-01-11 13:00:01 +00:00
2023-01-08 09:33:45 +00:00
fixed_seeds = [self.seed1, self.seed2]
2023-01-15 11:02:11 +00:00
2023-01-15 15:52:42 +00:00
# Run Latent Blending
2023-02-15 17:21:00 +00:00
imgs_transition = self.lb.run_transition(
2023-02-17 09:50:57 +00:00
recycle_img1=self.recycle_img1,
recycle_img2=self.recycle_img2,
2023-02-15 17:21:00 +00:00
num_inference_steps=self.num_inference_steps,
depth_strength=self.depth_strength,
2023-02-17 09:50:57 +00:00
t_compute_max_allowed=self.t_compute_max_allowed,
2023-02-15 17:21:00 +00:00
fixed_seeds=fixed_seeds
)
2023-01-15 15:52:42 +00:00
print(f"Latent Blending pass finished. Resulted in {len(imgs_transition)} images")
2023-01-09 08:58:26 +00:00
2023-02-15 17:21:00 +00:00
# Subselect three preview images
idx_img_prev = np.round(np.linspace(0, len(imgs_transition)-1, 5)[1:-1]).astype(np.int32)
2023-01-15 11:02:11 +00:00
list_imgs_preview = []
2023-02-15 17:21:00 +00:00
for j in idx_img_prev:
2023-01-15 11:02:11 +00:00
list_imgs_preview.append(Image.fromarray(imgs_transition[j]))
2023-01-12 19:35:51 +00:00
2023-01-15 15:52:42 +00:00
# Save the preview imgs as jpgs on disk so we are not sending umcompressed data around
self.current_timestamp = get_time('second')
self.list_fp_imgs_current = []
2023-01-15 11:02:11 +00:00
for i in range(len(list_imgs_preview)):
2023-02-18 06:56:30 +00:00
fp_img = os.path.join(self.dp_imgs, f"img_preview_{i}_{self.current_timestamp}.jpg")
2023-01-15 11:02:11 +00:00
list_imgs_preview[i].save(fp_img)
2023-01-15 15:52:42 +00:00
self.list_fp_imgs_current.append(fp_img)
2023-01-15 15:52:42 +00:00
# Insert cheap frames for the movie
2023-02-15 17:21:00 +00:00
imgs_transition_ext = add_frames_linear_interp(imgs_transition, self.duration_video, self.fps)
2023-01-08 09:33:45 +00:00
2023-01-15 11:02:11 +00:00
# Save as movie
2023-02-18 06:56:30 +00:00
self.fp_movie = os.path.join(self.dp_movies, f"movie_{self.current_timestamp}.mp4")
if os.path.isfile(self.fp_movie):
os.remove(self.fp_movie)
ms = MovieSaver(self.fp_movie, fps=self.fps)
2023-01-08 09:33:45 +00:00
for img in tqdm(imgs_transition_ext):
ms.write_frame(img)
ms.finalize()
2023-01-15 11:02:11 +00:00
print("DONE SAVING MOVIE! SENDING BACK...")
2023-01-15 15:52:42 +00:00
# Assemble Output, updating the preview images and le movie
2023-02-18 06:56:30 +00:00
list_return = self.list_fp_imgs_current + [self.fp_movie]
2023-01-15 11:02:11 +00:00
return list_return
2023-01-15 15:52:42 +00:00
2023-01-15 11:02:11 +00:00
2023-01-15 15:52:42 +00:00
def stack_forward(self, prompt2, seed2):
# Save preview images, prompts and seeds into dictionary for stacking
2023-02-20 07:29:21 +00:00
if len(self.list_all_segments) == 0:
timestamp_session = get_time('second')
self.dp_session = os.path.join(self.dp_out, f"session_{timestamp_session}")
os.makedirs(self.dp_session)
self.transition_can_be_computed = False
idx_segment = len(self.list_all_segments)
dp_segment = os.path.join(self.dp_session, f"segment_{str(idx_segment).zfill(3)}")
self.list_all_segments.append(dp_segment)
self.lb.write_imgs_transition(dp_segment)
shutil.copyfile(self.fp_movie, os.path.join(dp_segment, "movie.mp4"))
2023-02-18 06:56:30 +00:00
2023-01-15 15:52:42 +00:00
self.lb.swap_forward()
2023-02-19 14:46:02 +00:00
fp_multi = self.multi_concat()
list_out = [fp_multi]
list_out.extend([self.fp_img2])
2023-01-15 15:52:42 +00:00
list_out.extend([self.fp_img_empty]*4)
2023-02-19 14:46:02 +00:00
list_out.append(gr.update(interactive=False, value=prompt2))
list_out.append(gr.update(interactive=False, value=seed2))
2023-01-15 15:52:42 +00:00
list_out.append("")
list_out.append(np.random.randint(0, 10000000))
2023-02-19 14:46:02 +00:00
print(f"stack_forward: fp_multi {fp_multi}")
return list_out
2023-02-18 06:56:30 +00:00
def multi_concat(self):
list_fp_movies = []
2023-02-20 07:29:21 +00:00
for dp_segment in self.list_all_segments:
list_fp_movies.append(os.path.join(dp_segment, "movie.mp4"))
2023-02-18 06:56:30 +00:00
# Concatenate movies and save
2023-02-20 07:29:21 +00:00
fp_final = os.path.join(self.dp_session, "movie.mp4")
2023-02-18 06:56:30 +00:00
concatenate_movies(fp_final, list_fp_movies)
return fp_final
2023-02-19 14:46:02 +00:00
def get_state_dict(self):
state_dict = {}
grab_vars = ['prompt1', 'prompt2', 'seed1', 'seed2', 'height', 'width',
'num_inference_steps', 'depth_strength', 'guidance_scale',
'guidance_scale_mid_damper', 'mid_compression_scaler']
2023-02-18 06:56:30 +00:00
2023-02-19 14:46:02 +00:00
for v in grab_vars:
state_dict[v] = getattr(self, v)
return state_dict
2023-01-15 15:52:42 +00:00
2023-01-08 09:33:45 +00:00
2023-01-12 03:11:56 +00:00
if __name__ == "__main__":
2023-01-08 09:33:45 +00:00
2023-02-19 14:46:02 +00:00
# fp_ckpt = "../stable_diffusion_models/ckpt/v2-1_768-ema-pruned.ckpt"
fp_ckpt = "../stable_diffusion_models/ckpt/v2-1_512-ema-pruned.ckpt"
2023-02-20 07:29:21 +00:00
bf = BlendingFrontend(StableDiffusionHolder(fp_ckpt))
# self = BlendingFrontend(None)
2023-01-12 03:11:56 +00:00
with gr.Blocks() as demo:
2023-02-18 06:56:30 +00:00
with gr.Tab("Single Transition"):
with gr.Row():
prompt1 = gr.Textbox(label="prompt 1")
prompt2 = gr.Textbox(label="prompt 2")
2023-01-08 09:33:45 +00:00
2023-02-18 06:56:30 +00:00
with gr.Row():
2023-02-20 07:29:21 +00:00
duration_compute = gr.Slider(5, 200, bf.t_compute_max_allowed, step=1, label='compute budget for transition (seconds)', interactive=True)
duration_video = gr.Slider(1, 100, bf.duration_video, step=0.1, label='result video duration (seconds)', interactive=True)
height = gr.Slider(256, 2048, bf.height, step=128, label='height', interactive=True)
width = gr.Slider(256, 2048, bf.width, step=128, label='width', interactive=True)
2023-02-18 06:56:30 +00:00
with gr.Accordion("Advanced Settings (click to expand)", open=False):
with gr.Accordion("Diffusion settings", open=True):
with gr.Row():
2023-02-20 07:29:21 +00:00
num_inference_steps = gr.Slider(5, 100, bf.num_inference_steps, step=1, label='num_inference_steps', interactive=True)
guidance_scale = gr.Slider(1, 25, bf.guidance_scale, step=0.1, label='guidance_scale', interactive=True)
2023-02-18 06:56:30 +00:00
negative_prompt = gr.Textbox(label="negative prompt")
2023-02-20 07:29:21 +00:00
with gr.Accordion("Seed control: adjust seeds for first and last images", open=True):
2023-02-18 06:56:30 +00:00
with gr.Row():
b_newseed1 = gr.Button("randomize seed 1", variant='secondary')
2023-02-20 07:29:21 +00:00
seed1 = gr.Number(bf.seed1, label="seed 1", interactive=True)
seed2 = gr.Number(bf.seed2, label="seed 2", interactive=True)
2023-02-18 06:56:30 +00:00
b_newseed2 = gr.Button("randomize seed 2", variant='secondary')
2023-02-20 07:29:21 +00:00
with gr.Accordion("Last image crossfeeding.", open=True):
2023-02-18 06:56:30 +00:00
with gr.Row():
2023-02-20 07:29:21 +00:00
branch1_crossfeed_power = gr.Slider(0.0, 1.0, bf.branch1_crossfeed_power, step=0.01, label='branch1 crossfeed power', interactive=True)
branch1_crossfeed_range = gr.Slider(0.0, 1.0, bf.branch1_crossfeed_range, step=0.01, label='branch1 crossfeed range', interactive=True)
branch1_crossfeed_decay = gr.Slider(0.0, 1.0, bf.branch1_crossfeed_decay, step=0.01, label='branch1 crossfeed decay', interactive=True)
2023-02-18 06:56:30 +00:00
with gr.Accordion("Transition settings", open=True):
with gr.Row():
2023-02-20 07:29:21 +00:00
parental_crossfeed_power = gr.Slider(0.0, 1.0, bf.parental_crossfeed_power, step=0.01, label='parental crossfeed power', interactive=True)
parental_crossfeed_range = gr.Slider(0.0, 1.0, bf.parental_crossfeed_range, step=0.01, label='parental crossfeed range', interactive=True)
parental_crossfeed_power_decay = gr.Slider(0.0, 1.0, bf.parental_crossfeed_power_decay, step=0.01, label='parental crossfeed decay', interactive=True)
2023-02-19 14:46:02 +00:00
with gr.Row():
2023-02-20 07:29:21 +00:00
depth_strength = gr.Slider(0.01, 0.99, bf.depth_strength, step=0.01, label='depth_strength', interactive=True)
guidance_scale_mid_damper = gr.Slider(0.01, 2.0, bf.guidance_scale_mid_damper, step=0.01, label='guidance_scale_mid_damper', interactive=True)
2023-02-16 10:48:45 +00:00
2023-02-18 06:56:30 +00:00
with gr.Row():
b_compute1 = gr.Button('compute first image', variant='primary')
b_compute_transition = gr.Button('compute transition', variant='primary')
b_compute2 = gr.Button('compute last image', variant='primary')
with gr.Row():
img1 = gr.Image(label="1/5")
2023-02-19 14:46:02 +00:00
img2 = gr.Image(label="2/5", show_progress=False)
img3 = gr.Image(label="3/5", show_progress=False)
img4 = gr.Image(label="4/5", show_progress=False)
2023-02-18 06:56:30 +00:00
img5 = gr.Image(label="5/5")
with gr.Row():
2023-02-19 14:46:02 +00:00
vid_single = gr.Video(label="single trans")
vid_multi = gr.Video(label="multi trans")
2023-02-15 17:21:00 +00:00
2023-02-18 06:56:30 +00:00
with gr.Row():
2023-02-19 14:46:02 +00:00
# b_restart = gr.Button("RESTART EVERYTHING")
2023-02-20 07:29:21 +00:00
b_stackforward = gr.Button('append last movie segment (left) to multi movie (right)', variant='primary')
2023-02-19 14:46:02 +00:00
2023-02-18 06:56:30 +00:00
2023-02-20 07:29:21 +00:00
# Collect all UI elemts in list to easily pass as inputs in gradio
dict_ui_elem = {}
2023-02-18 06:56:30 +00:00
dict_ui_elem["prompt1"] = prompt1
dict_ui_elem["negative_prompt"] = negative_prompt
dict_ui_elem["prompt2"] = prompt2
dict_ui_elem["duration_compute"] = duration_compute
dict_ui_elem["duration_video"] = duration_video
dict_ui_elem["height"] = height
dict_ui_elem["width"] = width
dict_ui_elem["depth_strength"] = depth_strength
2023-02-20 07:29:21 +00:00
dict_ui_elem["branch1_crossfeed_power"] = branch1_crossfeed_power
dict_ui_elem["branch1_crossfeed_range"] = branch1_crossfeed_range
dict_ui_elem["branch1_crossfeed_decay"] = branch1_crossfeed_decay
2023-02-18 06:56:30 +00:00
dict_ui_elem["num_inference_steps"] = num_inference_steps
dict_ui_elem["guidance_scale"] = guidance_scale
dict_ui_elem["guidance_scale_mid_damper"] = guidance_scale_mid_damper
dict_ui_elem["seed1"] = seed1
dict_ui_elem["seed2"] = seed2
2023-02-20 07:29:21 +00:00
dict_ui_elem["parental_crossfeed_range"] = parental_crossfeed_range
dict_ui_elem["parental_crossfeed_power"] = parental_crossfeed_power
dict_ui_elem["parental_crossfeed_power_decay"] = parental_crossfeed_power_decay
2023-02-18 06:56:30 +00:00
# Convert to list, as gradio doesn't seem to accept dicts
list_ui_elem = []
list_ui_keys = []
for k in dict_ui_elem.keys():
list_ui_elem.append(dict_ui_elem[k])
list_ui_keys.append(k)
2023-02-20 07:29:21 +00:00
bf.list_ui_keys = list_ui_keys
2023-02-18 06:56:30 +00:00
2023-02-20 07:29:21 +00:00
b_newseed1.click(bf.randomize_seed1, outputs=seed1)
b_newseed2.click(bf.randomize_seed2, outputs=seed2)
b_compute1.click(bf.compute_img1, inputs=list_ui_elem, outputs=[img1, img2, img3, img4, img5])
b_compute2.click(bf.compute_img2, inputs=list_ui_elem, outputs=[img2, img3, img4, img5])
b_compute_transition.click(bf.compute_transition,
2023-02-18 06:56:30 +00:00
inputs=list_ui_elem,
2023-02-19 14:46:02 +00:00
outputs=[img2, img3, img4, vid_single])
2023-02-18 06:56:30 +00:00
2023-02-20 07:29:21 +00:00
b_stackforward.click(bf.stack_forward,
2023-02-18 06:56:30 +00:00
inputs=[prompt2, seed2],
2023-02-19 14:46:02 +00:00
outputs=[vid_multi, img1, img2, img3, img4, img5, prompt1, seed1, prompt2])
2023-02-17 09:50:57 +00:00
2023-02-20 07:29:21 +00:00
demo.launch(share=bf.share, inbrowser=True, inline=False)