Spaces:
Runtime error
Runtime error
File size: 42,864 Bytes
b5de3c9 09dc574 b5de3c9 09dc574 b5de3c9 96bf51f b5de3c9 09dc574 b5de3c9 8d70fdc b5de3c9 af47464 |
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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 |
# Copyright (c) 2024 Jaerin Lee
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import sys
sys.path.append('../../src')
import argparse
import random
import time
import json
import os
import glob
import pathlib
from functools import partial
from pprint import pprint
import numpy as np
from PIL import Image
import torch
import spaces
import gradio as gr
from huggingface_hub import snapshot_download
# from model import StreamMultiDiffusionSDXL
from model import StreamMultiDiffusion
from util import seed_everything
from prompt_util import preprocess_prompts, _quality_dict, _style_dict
### Utils
def log_state(state):
pprint(vars(opt))
if isinstance(state, gr.State):
state = state.value
pprint(vars(state))
def is_empty_image(im: Image.Image) -> bool:
if im is None:
return True
im = np.array(im)
has_alpha = (im.shape[2] == 4)
if not has_alpha:
return False
elif im.sum() == 0:
return True
else:
return False
### Argument passing
# parser = argparse.ArgumentParser(description='Semantic Palette demo powered by StreamMultiDiffusion with SDXL support.')
# parser.add_argument('-H', '--height', type=int, default=1024)
# parser.add_argument('-W', '--width', type=int, default=1024)
parser = argparse.ArgumentParser(description='Semantic Palette demo powered by StreamMultiDiffusion.')
parser.add_argument('-H', '--height', type=int, default=768)
parser.add_argument('-W', '--width', type=int, default=768)
parser.add_argument('--model', type=str, default=None, help='Hugging face model repository or local path for a SD1.5 model checkpoint to run.')
parser.add_argument('--bootstrap_steps', type=int, default=1)
parser.add_argument('--guidance_scale', type=float, default=0) # 1.2
parser.add_argument('--run_time', type=float, default=60)
parser.add_argument('--seed', type=int, default=-1)
parser.add_argument('--device', type=int, default=0)
parser.add_argument('--port', type=int, default=8000)
opt = parser.parse_args()
### Global variables and data structures
device = f'cuda:{opt.device}' if opt.device >= 0 else 'cpu'
if opt.model is None:
# opt.model = 'cagliostrolab/animagine-xl-3.1'
# opt.model = 'ironjr/BlazingDriveV11m'
opt.model = 'KBlueLeaf/kohaku-v2.1'
else:
if opt.model.endswith('.safetensors'):
opt.model = os.path.abspath(os.path.join('checkpoints', opt.model))
# model = StreamMultiDiffusionSDXL(
model = StreamMultiDiffusion(
device,
hf_key=opt.model,
height=opt.height,
width=opt.width,
cfg_type="full",
autoflush=True,
use_tiny_vae=True,
mask_type='continuous',
bootstrap_steps=opt.bootstrap_steps,
bootstrap_mix_steps=opt.bootstrap_steps,
guidance_scale=opt.guidance_scale,
seed=opt.seed,
).cuda()
print(f'[INFO] Parameters prepared!')
prompt_suggestions = [
'1girl, souryuu asuka langley, neon genesis evangelion, solo, upper body, v, smile, looking at viewer',
'1boy, solo, portrait, looking at viewer, white t-shirt, brown hair',
'1girl, arima kana, oshi no ko, solo, upper body, from behind',
]
opt.max_palettes = 3
opt.default_prompt_strength = 1.0
opt.default_mask_strength = 1.0
opt.default_mask_std = 0.0
opt.default_negative_prompt = (
'nsfw, worst quality, bad quality, normal quality, cropped, framed'
)
opt.verbose = True
opt.colors = [
'#000000',
'#2692F3',
'#F89E12',
'#16C232',
# '#F92F6C',
# '#AC6AEB',
# '#92C62C',
# '#92C6EC',
# '#FECAC0',
]
### Event handlers
def add_palette(state):
old_actives = state.active_palettes
state.active_palettes = min(state.active_palettes + 1, opt.max_palettes)
if opt.verbose:
log_state(state)
if state.active_palettes != old_actives:
return [state] + [
gr.update() if state.active_palettes != opt.max_palettes else gr.update(visible=False)
] + [
gr.update() if i != state.active_palettes - 1 else gr.update(value=state.prompt_names[i + 1], visible=True)
for i in range(opt.max_palettes)
]
else:
return [state] + [gr.update() for i in range(opt.max_palettes + 1)]
def select_palette(state, button, idx):
if idx < 0 or idx > opt.max_palettes:
idx = 0
old_idx = state.current_palette
if old_idx == idx:
return [state] + [gr.update() for _ in range(opt.max_palettes + 7)]
state.current_palette = idx
if opt.verbose:
log_state(state)
updates = [state] + [
gr.update() if i not in (idx, old_idx) else
gr.update(variant='secondary') if i == old_idx else gr.update(variant='primary')
for i in range(opt.max_palettes + 1)
]
label = 'Background' if idx == 0 else f'Palette {idx}'
updates.extend([
gr.update(value=button, interactive=(idx > 0)),
gr.update(value=state.prompts[idx], label=f'Edit Prompt for {label}'),
gr.update(value=state.neg_prompts[idx], label=f'Edit Negative Prompt for {label}'),
(
gr.update(value=state.mask_strengths[idx - 1], interactive=True) if idx > 0 else
gr.update(value=opt.default_mask_strength, interactive=False)
),
(
gr.update(value=state.prompt_strengths[idx - 1], interactive=True) if idx > 0 else
gr.update(value=opt.default_prompt_strength, interactive=False)
),
(
gr.update(value=state.mask_stds[idx - 1], interactive=True) if idx > 0 else
gr.update(value=opt.default_mask_std, interactive=False)
),
])
return updates
def change_prompt_strength(state, strength):
if state.current_palette == 0:
return state
state.prompt_strengths[state.current_palette - 1] = strength
if opt.verbose:
log_state(state)
return state
def change_std(state, std):
if state.current_palette == 0:
return state
state.mask_stds[state.current_palette - 1] = std
if opt.verbose:
log_state(state)
return state
def change_mask_strength(state, strength):
if state.current_palette == 0:
return state
state.mask_strengths[state.current_palette - 1] = strength
if opt.verbose:
log_state(state)
return state
def reset_seed(state, seed):
state.seed = seed
if opt.verbose:
log_state(state)
return state
def rename_prompt(state, name):
state.prompt_names[state.current_palette] = name
if opt.verbose:
log_state(state)
return [state] + [
gr.update() if i != state.current_palette else gr.update(value=name)
for i in range(opt.max_palettes + 1)
]
def change_prompt(state, prompt):
state.prompts[state.current_palette] = prompt
if opt.verbose:
log_state(state)
return state
def change_neg_prompt(state, neg_prompt):
state.neg_prompts[state.current_palette] = neg_prompt
if opt.verbose:
log_state(state)
return state
# def select_style(state, style_name):
# state.style_name = style_name
# if opt.verbose:
# log_state(state)
# return state
# def select_quality(state, quality_name):
# state.quality_name = quality_name
# if opt.verbose:
# log_state(state)
# return state
def import_state(state, json_text):
current_palette = state.current_palette
# active_palettes = state.active_palettes
state_dict = json.loads(json_text)
for k in ('inpainting_mode', 'is_runing', 'active_palettes', 'current_palette'):
if k in state_dict:
del state_dict[k]
state = argparse.Namespace(**state_dict)
state.active_palettes = opt.max_palettes
return [state] + [
gr.update(value=v, visible=True) for v in state.prompt_names
] + [
# state.style_name,
# state.quality_name,
state.prompts[current_palette],
state.prompt_names[current_palette],
state.neg_prompts[current_palette],
state.prompt_strengths[current_palette - 1],
state.mask_strengths[current_palette - 1],
state.mask_stds[current_palette - 1],
state.seed,
]
### Main worker
def generate():
return model()
def register(state, drawpad):
seed_everything(state.seed if state.seed >=0 else np.random.randint(2147483647))
print('Generate!')
background = drawpad['background'].convert('RGBA')
inpainting_mode = np.asarray(background).sum() != 0
if not inpainting_mode:
background = Image.new(size=(opt.width, opt.height), mode='RGB', color=(255, 255, 255))
print('Inpainting mode: ', inpainting_mode)
user_input = np.asarray(drawpad['layers'][0]) # (H, W, 4)
foreground_mask = torch.tensor(user_input[..., -1])[None, None] # (1, 1, H, W)
user_input = torch.tensor(user_input[..., :-1]) # (H, W, 3)
palette = torch.tensor([
tuple(int(s[i+1:i+3], 16) for i in (0, 2, 4))
for s in opt.colors[1:]
]) # (N, 3)
masks = (palette[:, None, None, :] == user_input[None]).all(dim=-1)[:, None, ...] # (N, 1, H, W)
# has_masks = [i for i, m in enumerate(masks.sum(dim=(1, 2, 3)) == 0) if not m]
has_masks = list(range(opt.max_palettes))
print('Has mask: ', has_masks)
masks = masks * foreground_mask
masks = masks[has_masks]
# if inpainting_mode:
prompts = [state.prompts[v + 1] for v in has_masks]
negative_prompts = [state.neg_prompts[v + 1] for v in has_masks]
mask_strengths = [state.mask_strengths[v] for v in has_masks]
mask_stds = [state.mask_stds[v] for v in has_masks]
prompt_strengths = [state.prompt_strengths[v] for v in has_masks]
# else:
# masks = torch.cat([torch.ones_like(foreground_mask), masks], dim=0)
# prompts = [state.prompts[0]] + [state.prompts[v + 1] for v in has_masks]
# negative_prompts = [state.neg_prompts[0]] + [state.neg_prompts[v + 1] for v in has_masks]
# mask_strengths = [1] + [state.mask_strengths[v] for v in has_masks]
# mask_stds = [0] + [state.mask_stds[v] for v in has_masks]
# prompt_strengths = [1] + [state.prompt_strengths[v] for v in has_masks]
# prompts, negative_prompts = preprocess_prompts(
# prompts, negative_prompts, style_name=state.style_name, quality_name=state.quality_name)
model.update_background(
background.convert('RGB'),
prompt=None,
negative_prompt=None,
)
state.prompts[0] = model.background.prompt
state.neg_prompts[0] = model.background.negative_prompt
model.update_layers(
prompts=prompts,
negative_prompts=negative_prompts,
masks=masks.to(device),
mask_strengths=mask_strengths,
mask_stds=mask_stds,
prompt_strengths=prompt_strengths,
)
state.inpainting_mode = inpainting_mode
return state
@spaces.GPU
def run(state, drawpad):
model.device = torch.device('cuda')
model.reset_seed(model.generator, opt.seed)
model.reset_latent()
model.prepare()
state = register(state, drawpad)
state.is_running = True
tic = time.time()
while True:
yield [state, generate()]
toc = time.time()
tdelta = toc - tic
if tdelta > opt.run_time:
state.is_running = False
return [state, generate()]
def hide_element():
return gr.update(visible=False)
def show_element():
return gr.update(visible=True)
def draw(state, drawpad):
if not state.is_running:
return
user_input = np.asarray(drawpad['layers'][0]) # (H, W, 4)
foreground_mask = torch.tensor(user_input[..., -1])[None, None] # (1, 1, H, W)
user_input = torch.tensor(user_input[..., :-1]) # (H, W, 3)
palette = torch.tensor([
tuple(int(s[i+1:i+3], 16) for i in (0, 2, 4))
for s in opt.colors[1:]
]) # (N, 3)
masks = (palette[:, None, None, :] == user_input[None]).all(dim=-1)[:, None, ...] # (N, 1, H, W)
# has_masks = [i for i, m in enumerate(masks.sum(dim=(1, 2, 3)) == 0) if not m]
has_masks = list(range(opt.max_palettes))
print('Has mask: ', has_masks)
masks = masks * foreground_mask
masks = masks[has_masks]
# if state.inpainting_mode:
mask_strengths = [state.mask_strengths[v] for v in has_masks]
mask_stds = [state.mask_stds[v] for v in has_masks]
# else:
# masks = torch.cat([torch.ones_like(foreground_mask), masks], dim=0)
# mask_strengths = [1] + [state.mask_strengths[v] for v in has_masks]
# mask_stds = [0] + [state.mask_stds[v] for v in has_masks]
for i in range(len(has_masks)):
model.update_single_layer(
idx=i,
mask=masks[i],
mask_strength=mask_strengths[i],
mask_std=mask_stds[i],
)
### Load examples
root = pathlib.Path(__file__).parent
print(root)
example_root = os.path.join(root, 'examples')
example_images = glob.glob(os.path.join(example_root, '*.png'))
example_images = [Image.open(i) for i in example_images]
# with open(os.path.join(example_root, 'prompt_background_advanced.txt')) as f:
# prompts_background = [l.strip() for l in f.readlines() if l.strip() != '']
# with open(os.path.join(example_root, 'prompt_girl.txt')) as f:
# prompts_girl = [l.strip() for l in f.readlines() if l.strip() != '']
# with open(os.path.join(example_root, 'prompt_boy.txt')) as f:
# prompts_boy = [l.strip() for l in f.readlines() if l.strip() != '']
# with open(os.path.join(example_root, 'prompt_props.txt')) as f:
# prompts_props = [l.strip() for l in f.readlines() if l.strip() != '']
# prompts_props = {l.split(',')[0].strip(): ','.join(l.split(',')[1:]).strip() for l in prompts_props}
# prompt_background = lambda: random.choice(prompts_background)
# prompt_girl = lambda: random.choice(prompts_girl)
# prompt_boy = lambda: random.choice(prompts_boy)
# prompt_props = lambda: np.random.choice(list(prompts_props.keys()), size=(opt.max_palettes - 2), replace=False).tolist()
### Main application
css = f"""
#run-button {{
font-size: 18pt;
background-image: linear-gradient(to right, #4338ca 0%, #26a0da 51%, #4338ca 100%);
margin: 0;
padding: 15px 45px;
text-align: center;
// text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
// display: block;
background-position: right center;
}}
#run-button:hover {{
background-position: left center;
color: #fff;
text-decoration: none;
}}
#run-anim {{
padding: 40px 45px;
}}
#semantic-palette {{
border-style: solid;
border-width: 0.2em;
border-color: #eee;
}}
#semantic-palette:hover {{
box-shadow: 0 0 20px #eee;
}}
#output-screen {{
width: 100%;
aspect-ratio: {opt.width} / {opt.height};
}}
.layer-wrap {{
display: none;
}}
"""
for i in range(opt.max_palettes + 1):
css = css + f"""
.secondary#semantic-palette-{i} {{
background-image: linear-gradient(to right, #374151 0%, #374151 71%, {opt.colors[i]} 100%);
color: white;
}}
.primary#semantic-palette-{i} {{
background-image: linear-gradient(to right, #4338ca 0%, #4338ca 71%, {opt.colors[i]} 100%);
color: white;
}}
"""
css = css + f"""
.mask-red {{
left: 0;
width: 0;
color: #BE002A;
-webkit-animation: text-red {opt.run_time:.1f}s ease infinite;
animation: text-red {opt.run_time:.1f}s ease infinite;
z-index: 2;
background: transparent;
}}
.mask-white {{
right: 0;
}}
/* Flames */
#red-flame {{
opacity: 0;
-webkit-animation: show-flames {opt.run_time:.1f}s ease infinite, red-flame 120ms ease infinite;
animation: show-flames {opt.run_time:.1f}s ease infinite, red-flame 120ms ease infinite;
transform-origin: center bottom;
}}
#yellow-flame {{
opacity: 0;
-webkit-animation: show-flames {opt.run_time:.1f}s ease infinite, yellow-flame 120ms ease infinite;
animation: show-flames {opt.run_time:.1f}s ease infinite, yellow-flame 120ms ease infinite;
transform-origin: center bottom;
}}
#white-flame {{
opacity: 0;
-webkit-animation: show-flames {opt.run_time:.1f}s ease infinite, red-flame 100ms ease infinite;
animation: show-flames {opt.run_time:.1f}s ease infinite, red-flame 100ms ease infinite;
transform-origin: center bottom;
}}
"""
with open(os.path.join(root, 'timer', 'style.css')) as f:
added_css = ''.join(f.readlines())
css = css + added_css
# js = ''
# with open(os.path.join(root, 'timer', 'script.js')) as f:
# added_js = ''.join(f.readlines())
# js = js + added_js
head = f"""
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
"""
with gr.Blocks(theme=gr.themes.Soft(), css=css, head=head) as demo:
iface = argparse.Namespace()
def _define_state():
state = argparse.Namespace()
# Cursor.
state.is_running = False
state.inpainting_mode = False
state.current_palette = 0 # 0: Background; 1,2,3,...: Layers
state.model_id = opt.model
state.style_name = '(None)'
state.quality_name = 'Standard v3.1'
# State variables (one-hot).
state.active_palettes = 5
# Front-end initialized to the default values.
# prompt_props_ = prompt_props()
state.prompt_names = [
'🌄 Background',
'👧 Girl',
'🐶 Dog',
'💐 Garden',
] + ['🎨 New Palette' for _ in range(opt.max_palettes - 3)]
state.prompts = [
'',
'A girl smiling at viewer',
'Doggy body part',
'Flower garden',
] + ['' for _ in range(opt.max_palettes - 3)]
state.neg_prompts = [
opt.default_negative_prompt
+ (', humans, humans, humans' if i == 0 else '')
for i in range(opt.max_palettes + 1)
]
state.prompt_strengths = [opt.default_prompt_strength for _ in range(opt.max_palettes)]
state.mask_strengths = [opt.default_mask_strength for _ in range(opt.max_palettes)]
state.mask_stds = [opt.default_mask_std for _ in range(opt.max_palettes)]
state.seed = opt.seed
return state
state = gr.State(value=_define_state)
### Demo user interface
gr.HTML(
"""
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
<div>
<h1>🦦🦦 StreamMultiDiffusion: Real-Time Interactive Generation with Region-Based Semantic Control 🦦🦦</h1>
<h5 style="margin: 0;">If you ❤️ our project, please visit our Github and give us a 🌟!</h5>
</br>
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
<a href='https://arxiv.org/abs/2403.09055'>
<img src="https://img.shields.io/badge/arXiv-2403.09055-red">
</a>
<a href='https://jaerinlee.com/research/StreamMultiDiffusion'>
<img src='https://img.shields.io/badge/Project-Page-green' alt='Project Page'>
</a>
<a href='https://github.com/ironjr/StreamMultiDiffusion'>
<img src='https://img.shields.io/github/stars/ironjr/StreamMultiDiffusion?label=Github&color=blue'>
</a>
<a href='https://twitter.com/_ironjr_'>
<img src='https://img.shields.io/twitter/url?label=_ironjr_&url=https%3A%2F%2Ftwitter.com%2F_ironjr_'>
</a>
<a href='https://github.com/ironjr/StreamMultiDiffusion/blob/main/LICENSE'>
<img src='https://img.shields.io/badge/license-MIT-lightgrey'>
</a>
<a href='https://huggingface.co/papers/2403.09055'>
<img src='https://img.shields.io/badge/%F0%9F%A4%97%20Paper-StreamMultiDiffusion-yellow'>
</a>
<a href='https://huggingface.co/spaces/ironjr/SemanticPalette'>
<img src='https://img.shields.io/badge/%F0%9F%A4%97%20Demo-SemanticPaletteSD1.5-yellow'>
</a>
<a href='https://huggingface.co/spaces/ironjr/SemanticPaletteXL'>
<img src='https://img.shields.io/badge/%F0%9F%A4%97%20Demo-SemanticPaletteSDXL-yellow'>
</a>
</div>
</div>
</div>
<div>
</br>
</div>
"""
)
with gr.Row():
with gr.Column(scale=1):
with gr.Group(elem_id='semantic-palette'):
gr.HTML(
"""
<div style="justify-content: center; align-items: center;">
<br/>
<h3 style="margin: 0; text-align: center;"><b>🧠 Semantic Palette 🎨</b></h3>
<br/>
</div>
"""
)
iface.btn_semantics = [gr.Button(
value=state.value.prompt_names[0],
variant='primary',
elem_id='semantic-palette-0',
)]
for i in range(opt.max_palettes):
iface.btn_semantics.append(gr.Button(
value=state.value.prompt_names[i + 1],
variant='secondary',
visible=(i < state.value.active_palettes),
elem_id=f'semantic-palette-{i + 1}'
))
iface.btn_add_palette = gr.Button(
value='Create New Semantic Brush',
variant='primary',
visible=(state.value.active_palettes < opt.max_palettes),
)
with gr.Accordion(label='Import/Export Semantic Palette', open=True):
iface.tbox_state_import = gr.Textbox(label='Put Palette JSON Here To Import')
iface.json_state_export = gr.JSON(label='Exported Palette')
iface.btn_export_state = gr.Button("Export Palette ➡️ JSON", variant='primary')
iface.btn_import_state = gr.Button("Import JSON ➡️ Palette", variant='secondary')
gr.HTML(
"""
<div>
</br>
</div>
<div style="justify-content: center; align-items: center;">
<h3 style="margin: 0; text-align: center;"><b>❓Usage❓</b></h3>
</br>
<div style="justify-content: center; align-items: left; text-align: left;">
<p>1-1. Type in the background prompt. Background is not required if you paint the whole drawpad.</p>
<p>1-2. (Optional: <em><b>Inpainting mode</b></em>) Uploading a background image will make the app into inpainting mode. Removing the image returns to the creation mode. In the inpainting mode, increasing the <em>Mask Blur STD</em> > 8 for every colored palette is recommended for smooth boundaries.</p>
<p>2. Select a semantic brush by clicking onto one in the <b>Semantic Palette</b> above. Edit prompt for the semantic brush.</p>
<p>2-1. If you are willing to draw more diverse images, try <b>Create New Semantic Brush</b>.</p>
<p>3. Start drawing in the <b>Semantic Drawpad</b> tab. The brush color is directly linked to the semantic brushes.</p>
<p>4. Click [<b>GENERATE!</b>] button to create your (large-scale) artwork!</p>
</div>
</div>
"""
)
gr.HTML(
"""
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
<h5 style="margin: 0;"><b>... or run in your own 🤗 space!</b></h5>
</div>
"""
)
gr.DuplicateButton()
with gr.Column(scale=4):
with gr.Row():
with gr.Column(scale=2):
iface.ctrl_semantic = gr.ImageEditor(
image_mode='RGBA',
sources=['upload', 'clipboard', 'webcam'],
transforms=['crop'],
crop_size=(opt.width, opt.height),
brush=gr.Brush(
colors=opt.colors[1:],
color_mode="fixed",
),
type='pil',
label='Semantic Drawpad',
elem_id='drawpad',
)
# with gr.Accordion(label='Prompt Engineering', open=False):
# iface.quality_select = gr.Dropdown(
# label='Quality Presets',
# interactive=True,
# choices=list(_quality_dict.keys()),
# value='Standard v3.1',
# )
# iface.style_select = gr.Radio(
# label='Style Preset',
# container=True,
# interactive=True,
# choices=list(_style_dict.keys()),
# value='(None)',
# )
with gr.Column(scale=2):
iface.image_slot = gr.Image(
interactive=False,
show_label=False,
show_download_button=True,
type='pil',
label='Generated Result',
elem_id='output-screen',
value=lambda: random.choice(example_images),
)
iface.btn_generate = gr.Button(
value=f'Lemme try! ({int(opt.run_time // 60)} min)',
variant='primary',
# scale=1,
elem_id='run-button'
)
iface.run_animation = gr.HTML(
f"""
<div id="deadline">
<svg preserveAspectRatio="none" id="line" viewBox="0 0 581 158" enable-background="new 0 0 581 158">
<g id="fire">
<rect id="mask-fire-black" x="511" y="41" width="38" height="34"/>
<g>
<defs>
<rect id="mask_fire" x="511" y="41" width="38" height="34"/>
</defs>
<clipPath id="mask-fire_1_">
<use xlink:href="#mask_fire" overflow="visible"/>
</clipPath>
<g id="group-fire" clip-path="url(#mask-fire_1_)">
<path id="red-flame" fill="#B71342" d="M528.377,100.291c6.207,0,10.947-3.272,10.834-8.576 c-0.112-5.305-2.934-8.803-8.237-10.383c-5.306-1.581-3.838-7.9-0.79-9.707c-7.337,2.032-7.581,5.891-7.11,8.238 c0.789,3.951,7.56,4.402,5.077,9.48c-2.482,5.079-8.012,1.129-6.319-2.257c-2.843,2.233-4.78,6.681-2.259,9.703 C521.256,98.809,524.175,100.291,528.377,100.291z"/>
<path id="yellow-flame" opacity="0.71" fill="#F7B523" d="M528.837,100.291c4.197,0,5.108-1.854,5.974-5.417 c0.902-3.724-1.129-6.207-5.305-9.931c-2.396-2.137-1.581-4.176-0.565-6.32c-4.401,1.918-3.384,5.304-2.482,6.658 c1.511,2.267,2.099,2.364,0.42,5.8c-1.679,3.435-5.42,0.764-4.275-1.527c-1.921,1.512-2.373,4.04-1.528,6.563 C522.057,99.051,525.994,100.291,528.837,100.291z"/>
<path id="white-flame" opacity="0.81" fill="#FFFFFF" d="M529.461,100.291c-2.364,0-4.174-1.322-4.129-3.469 c0.04-2.145,1.117-3.56,3.141-4.198c2.022-0.638,1.463-3.195,0.302-3.925c2.798,0.821,2.89,2.382,2.711,3.332 c-0.301,1.597-2.883,1.779-1.938,3.834c0.912,1.975,3.286,0.938,2.409-0.913c1.086,0.903,1.826,2.701,0.864,3.924 C532.18,99.691,531.064,100.291,529.461,100.291z"/>
</g>
</g>
</g>
<g id="progress-trail">
<path fill="#FFFFFF" d="M491.979,83.878c1.215-0.73-0.62-5.404-3.229-11.044c-2.583-5.584-5.034-10.066-7.229-8.878
c-2.854,1.544-0.192,6.286,2.979,11.628C487.667,80.917,490.667,84.667,491.979,83.878z"/>
<path fill="#FFFFFF" d="M571,76v-5h-23.608c0.476-9.951-4.642-13.25-4.642-13.25l-3.125,4c0,0,3.726,2.7,3.625,5.125
c-0.071,1.714-2.711,3.18-4.962,4.125H517v5h10v24h-25v-5.666c0,0,0.839,0,2.839-0.667s6.172-3.667,4.005-6.333
s-7.49,0.333-9.656,0.166s-6.479-1.5-8.146,1.917c-1.551,3.178,0.791,5.25,5.541,6.083l-0.065,4.5H16c-2.761,0-5,2.238-5,5v17
c0,2.762,2.239,5,5,5h549c2.762,0,5-2.238,5-5v-17c0-2.762-2.238-5-5-5h-3V76H571z"/>
<path fill="#FFFFFF" d="M535,65.625c1.125,0.625,2.25-1.125,2.25-1.125l11.625-22.375c0,0,0.75-0.875-1.75-2.125
s-3.375,0.25-3.375,0.25s-8.75,21.625-9.875,23.5S533.875,65,535,65.625z"/>
</g>
<g>
<defs>
<path id="SVGID_1_" d="M484.5,75.584c-3.172-5.342-5.833-10.084-2.979-11.628c2.195-1.188,4.646,3.294,7.229,8.878
c2.609,5.64,4.444,10.313,3.229,11.044C490.667,84.667,487.667,80.917,484.5,75.584z M571,76v-5h-23.608
c0.476-9.951-4.642-13.25-4.642-13.25l-3.125,4c0,0,3.726,2.7,3.625,5.125c-0.071,1.714-2.711,3.18-4.962,4.125H517v5h10v24h-25
v-5.666c0,0,0.839,0,2.839-0.667s6.172-3.667,4.005-6.333s-7.49,0.333-9.656,0.166s-6.479-1.5-8.146,1.917
c-1.551,3.178,0.791,5.25,5.541,6.083l-0.065,4.5H16c-2.761,0-5,2.238-5,5v17c0,2.762,2.239,5,5,5h549c2.762,0,5-2.238,5-5v-17
c0-2.762-2.238-5-5-5h-3V76H571z M535,65.625c1.125,0.625,2.25-1.125,2.25-1.125l11.625-22.375c0,0,0.75-0.875-1.75-2.125
s-3.375,0.25-3.375,0.25s-8.75,21.625-9.875,23.5S533.875,65,535,65.625z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<rect id="progress-time-fill" x="-100%" y="34" clip-path="url(#SVGID_2_)" fill="#BE002A" width="586" height="103"/>
</g>
<g id="death-group">
<path id="death" fill="#BE002A" d="M-46.25,40.416c-5.42-0.281-8.349,3.17-13.25,3.918c-5.716,0.871-10.583-0.918-10.583-0.918
C-67.5,49-65.175,50.6-62.083,52c5.333,2.416,4.083,3.5,2.084,4.5c-16.5,4.833-15.417,27.917-15.417,27.917L-75.5,84.75
c-1,12.25-20.25,18.75-20.25,18.75s39.447,13.471,46.25-4.25c3.583-9.333-1.553-16.869-1.667-22.75
c-0.076-3.871,2.842-8.529,6.084-12.334c3.596-4.22,6.958-10.374,6.958-15.416C-38.125,43.186-39.833,40.75-46.25,40.416z
M-40,51.959c-0.882,3.004-2.779,6.906-4.154,6.537s-0.939-4.32,0.112-7.704c0.82-2.64,2.672-5.96,3.959-5.583
C-39.005,45.523-39.073,48.8-40,51.959z"/>
<path id="death-arm" fill="#BE002A" d="M-53.375,75.25c0,0,9.375,2.25,11.25,0.25s2.313-2.342,3.375-2.791
c1.083-0.459,4.375-1.75,4.292-4.75c-0.101-3.627,0.271-4.594,1.333-5.043c1.083-0.457,2.75-1.666,2.75-1.666
s0.708-0.291,0.5-0.875s-0.791-2.125-1.583-2.959c-0.792-0.832-2.375-1.874-2.917-1.332c-0.542,0.541-7.875,7.166-7.875,7.166
s-2.667,2.791-3.417,0.125S-49.833,61-49.833,61s-3.417,1.416-3.417,1.541s-1.25,5.834-1.25,5.834l-0.583,5.833L-53.375,75.25z"/>
<path id="death-tool" fill="#BE002A" d="M-20.996,26.839l-42.819,91.475l1.812,0.848l38.342-81.909c0,0,8.833,2.643,12.412,7.414
c5,6.668,4.75,14.084,4.75,14.084s4.354-7.732,0.083-17.666C-10,32.75-19.647,28.676-19.647,28.676l0.463-0.988L-20.996,26.839z"/>
</g>
<path id="designer-body" fill="#FEFFFE" d="M514.75,100.334c0,0,1.25-16.834-6.75-16.5c-5.501,0.229-5.583,3-10.833,1.666
c-3.251-0.826-5.084-15.75-0.834-22c4.948-7.277,12.086-9.266,13.334-7.833c2.25,2.583-2,10.833-4.5,14.167
c-2.5,3.333-1.833,10.416,0.5,9.916s8.026-0.141,10,2.25c3.166,3.834,4.916,17.667,4.916,17.667l0.917,2.5l-4,0.167L514.75,100.334z
"/>
<circle id="designer-head" fill="#FEFFFE" cx="516.083" cy="53.25" r="6.083"/>
<g id="designer-arm-grop">
<path id="designer-arm" fill="#FEFFFE" d="M505.875,64.875c0,0,5.875,7.5,13.042,6.791c6.419-0.635,11.833-2.791,13.458-4.041s2-3.5,0.25-3.875
s-11.375,5.125-16,3.25c-5.963-2.418-8.25-7.625-8.25-7.625l-2,1.125L505.875,64.875z"/>
<path id="designer-pen" fill="#FEFFFE" d="M525.75,59.084c0,0-0.423-0.262-0.969,0.088c-0.586,0.375-0.547,0.891-0.547,0.891l7.172,8.984l1.261,0.453
l-0.104-1.328L525.75,59.084z"/>
</g>
</svg>
<div class="deadline-timer">
Remaining <span class="day">{opt.run_time}</span> <span class="days">s</span>
</div>
</div>
""",
elem_id='run-anim',
visible=False,
)
with gr.Group(elem_id='control-panel'):
with gr.Row():
iface.tbox_prompt = gr.Textbox(
label='Edit Prompt for Background',
info='What do you want to draw?',
value=state.value.prompts[0],
placeholder=lambda: random.choice(prompt_suggestions),
scale=2,
)
iface.slider_strength = gr.Slider(
label='Prompt Strength',
info='Blends fg & bg in the prompt level, >0.8 Preferred.',
minimum=0.5,
maximum=1.0,
value=opt.default_prompt_strength,
scale=1,
)
with gr.Row():
iface.tbox_neg_prompt = gr.Textbox(
label='Edit Negative Prompt for Background',
info='Add unwanted objects for this semantic brush.',
value=opt.default_negative_prompt,
scale=2,
)
iface.tbox_name = gr.Textbox(
label='Edit Brush Name',
info='Just for your convenience.',
value=state.value.prompt_names[0],
placeholder='🌄 Background',
scale=1,
)
with gr.Row():
iface.slider_alpha = gr.Slider(
label='Mask Alpha',
info='Factor multiplied to the mask before quantization. Extremely sensitive, >0.98 Preferred.',
minimum=0.5,
maximum=1.0,
value=opt.default_mask_strength,
)
iface.slider_std = gr.Slider(
label='Mask Blur STD',
info='Blends fg & bg in the latent level, 0 for generation, 8-32 for inpainting.',
minimum=0.0001,
maximum=100.0,
value=opt.default_mask_std,
)
iface.slider_seed = gr.Slider(
label='Seed',
info='The global seed.',
minimum=-1,
maximum=2147483647,
step=1,
value=opt.seed,
)
### Attach event handlers
for idx, btn in enumerate(iface.btn_semantics):
btn.click(
fn=partial(select_palette, idx=idx),
inputs=[state, btn],
outputs=[state] + iface.btn_semantics + [
iface.tbox_name,
iface.tbox_prompt,
iface.tbox_neg_prompt,
iface.slider_alpha,
iface.slider_strength,
iface.slider_std,
],
api_name=f'select_palette_{idx}',
)
iface.btn_add_palette.click(
fn=add_palette,
inputs=state,
outputs=[state, iface.btn_add_palette] + iface.btn_semantics[1:],
api_name='create_new',
)
run_event = iface.btn_generate.click(
fn=hide_element,
inputs=None,
outputs=iface.btn_generate,
api_name='hide_run_button',
).then(
fn=show_element,
inputs=None,
outputs=iface.run_animation,
api_name='show_run_animation',
)
run_event.then(
fn=run,
inputs=[state, iface.ctrl_semantic],
outputs=[state, iface.image_slot],
api_name='run',
).then(
fn=hide_element,
inputs=None,
outputs=iface.run_animation,
api_name='hide_run_animation',
).then(
fn=show_element,
inputs=None,
outputs=iface.btn_generate,
api_name='show_run_button',
)
run_event.then(
fn=None,
inputs=None,
outputs=None,
api_name='run_animation',
js=f"""
async () => {{
// timer arguments:
// #1 - time of animation in mileseconds,
// #2 - days to deadline
const animationTime = {opt.run_time};
const days = {opt.run_time};
jQuery('#progress-time-fill, #death-group').css({{'animation-duration': animationTime+'s'}});
var deadlineAnimation = function () {{
setTimeout(function() {{
jQuery('#designer-arm-grop').css({{'animation-duration': '1.5s'}});
}}, 0);
setTimeout(function() {{
jQuery('#designer-arm-grop').css({{'animation-duration': '1.0s'}});
}}, {int(opt.run_time * 1000 * 0.2)});
setTimeout(function() {{
jQuery('#designer-arm-grop').css({{'animation-duration': '0.7s'}});
}}, {int(opt.run_time * 1000 * 0.4)});
setTimeout(function() {{
jQuery('#designer-arm-grop').css({{'animation-duration': '0.3s'}});
}}, {int(opt.run_time * 1000 * 0.6)});
setTimeout(function() {{
jQuery('#designer-arm-grop').css({{'animation-duration': '0.2s'}});
}}, {int(opt.run_time * 1000 * 0.75)});
}};
var deadlineTextFinished = function () {{
var el = jQuery('.deadline-timer');
var html = 'Done! Retry?';
el.html(html);
}};
function timer(totalTime, deadline) {{
var time = totalTime * 1000;
var dayDuration = time / deadline;
var actualDay = deadline;
var timer = setInterval(countTime, dayDuration);
function countTime() {{
--actualDay;
jQuery('.deadline-timer .day').text(actualDay);
if (actualDay == 0) {{
clearInterval(timer);
// jQuery('.deadline-timer .day').text(deadline);
deadlineTextFinished();
}}
}}
}}
var deadlineText = function () {{
var el = jQuery('.deadline-timer');
var htmlBase = 'Remaining <span class="day">{opt.run_time}</span> <span class="days">s</span>';
el.html(html);
var html = '<div class="mask-red"><div class="inner">' + htmlBase + '</div></div><div class="mask-white"><div class="inner">' + htmlBase + '</div></div>';
el.html(html);
}};
var runAnimation = function() {{
timer(animationTime, days);
deadlineAnimation();
deadlineText();
console.log('begin interval', animationTime * 1000);
}};
runAnimation();
}}
"""
)
iface.slider_alpha.input(
fn=change_mask_strength,
inputs=[state, iface.slider_alpha],
outputs=state,
api_name='change_alpha',
)
iface.slider_std.input(
fn=change_std,
inputs=[state, iface.slider_std],
outputs=state,
api_name='change_std',
)
iface.slider_strength.input(
fn=change_prompt_strength,
inputs=[state, iface.slider_strength],
outputs=state,
api_name='change_strength',
)
iface.slider_seed.input(
fn=reset_seed,
inputs=[state, iface.slider_seed],
outputs=state,
api_name='reset_seed',
)
iface.tbox_name.input(
fn=rename_prompt,
inputs=[state, iface.tbox_name],
outputs=[state] + iface.btn_semantics,
api_name='prompt_rename',
)
iface.tbox_prompt.input(
fn=change_prompt,
inputs=[state, iface.tbox_prompt],
outputs=state,
api_name='prompt_edit',
)
iface.tbox_neg_prompt.input(
fn=change_neg_prompt,
inputs=[state, iface.tbox_neg_prompt],
outputs=state,
api_name='neg_prompt_edit',
)
# iface.style_select.change(
# fn=select_style,
# inputs=[state, iface.style_select],
# outputs=state,
# api_name='style_select',
# )
# iface.quality_select.change(
# fn=select_quality,
# inputs=[state, iface.quality_select],
# outputs=state,
# api_name='quality_select',
# )
iface.btn_export_state.click(lambda x: vars(x), state, iface.json_state_export)
iface.btn_import_state.click(import_state, [state, iface.tbox_state_import], [
state,
*iface.btn_semantics,
# iface.style_select,
# iface.quality_select,
iface.tbox_prompt,
iface.tbox_name,
iface.tbox_neg_prompt,
iface.slider_strength,
iface.slider_alpha,
iface.slider_std,
iface.slider_seed,
])
# Realtime user input.
iface.ctrl_semantic.change(
fn=draw,
inputs=[state, iface.ctrl_semantic],
outputs=None,
api_name='draw',
)
if __name__ == '__main__':
demo.queue(max_size=20).launch()
|