Spaces:
Running
on
Zero
Running
on
Zero
File size: 18,912 Bytes
52a7a23 |
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 |
import random
import gradio as gr
import numpy as np
import spaces
import torch
from pipeline.mixture_tiling_sdxl import StableDiffusionXLTilingPipeline
from pipeline.util import SAMPLERS, create_hdr_effect, select_scheduler
from diffusers import AutoencoderKL
MAX_SEED = np.iinfo(np.int32).max
vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype=torch.float16).to("cuda")
model_id = "stablediffusionapi/yamermix-v8-vae"
pipe = StableDiffusionXLTilingPipeline.from_pretrained(
model_id,
torch_dtype=torch.float16,
vae=vae,
use_safetensors=False, # for yammermix
# variant="fp16",
).to("cuda")
#pipe.enable_model_cpu_offload() # << Enable this if you have limited VRAM
pipe.enable_vae_tiling()
pipe.enable_vae_slicing()
# region functions
@spaces.GPU
def predict(
left_prompt,
center_prompt,
right_prompt,
negative_prompt,
left_gs,
center_gs,
right_gs,
overlap_pixels,
steps,
generation_seed,
scheduler,
tile_height,
tile_width,
target_height,
target_width,
hdr,
progress=gr.Progress(track_tqdm=True),
):
global pipe
# Set selected scheduler
print(f"Using scheduler: {scheduler}...")
pipe.scheduler = select_scheduler(pipe, scheduler)
# Set seed
generator = torch.Generator("cuda").manual_seed(generation_seed)
target_height = int(target_height)
target_width = int(target_width)
tile_height = int(tile_height)
tile_width = int(tile_width)
# Mixture of Diffusers generation
image = pipe(
prompt=[
[
left_prompt,
center_prompt,
right_prompt,
]
],
negative_prompt=negative_prompt,
tile_height=tile_height,
tile_width=tile_width,
tile_row_overlap=0,
tile_col_overlap=overlap_pixels,
guidance_scale_tiles=[[left_gs, center_gs, right_gs]],
height=target_height,
width=target_width,
generator=generator,
num_inference_steps=steps,
)["images"][0]
image = create_hdr_effect(image, hdr)
return image
def calc_tile_size(target_height, target_width, overlap_pixels, max_tile_width_size=1280):
num_cols = 3
num_rows = 1
min_tile_dimension = 8
reduction_step = 8
max_tile_height_size = 1024
best_tile_width = 0
best_tile_height = 0
best_adjusted_target_width = 0
best_adjusted_target_height = 0
found_valid_solution = False
# Adjust Tile Width
tile_width = max_tile_width_size
tile_height = max_tile_height_size
while tile_width >= min_tile_dimension:
horizontal_borders = num_cols - 1
total_horizontal_overlap_pixels = overlap_pixels * horizontal_borders
adjusted_target_width = tile_width * num_cols - total_horizontal_overlap_pixels
vertical_borders = num_rows - 1
total_vertical_overlap_pixels = overlap_pixels * vertical_borders
adjusted_target_height = tile_height * num_rows - total_vertical_overlap_pixels
if tile_width <= max_tile_width_size and adjusted_target_width <= target_width:
if adjusted_target_width > best_adjusted_target_width:
best_tile_width = tile_width
best_adjusted_target_width = adjusted_target_width
found_valid_solution = True
tile_width -= reduction_step
# Adjust Tile Height
if found_valid_solution:
tile_width = best_tile_width
tile_height = max_tile_height_size
while tile_height >= min_tile_dimension:
horizontal_borders = num_cols - 1
total_horizontal_overlap_pixels = overlap_pixels * horizontal_borders
adjusted_target_width = tile_width * num_cols - total_horizontal_overlap_pixels
vertical_borders = num_rows - 1
total_vertical_overlap_pixels = overlap_pixels * vertical_borders
adjusted_target_height = tile_height * num_rows - total_vertical_overlap_pixels
if tile_height <= max_tile_height_size and adjusted_target_height <= target_height:
if adjusted_target_height > best_adjusted_target_height:
best_tile_height = tile_height
best_adjusted_target_height = adjusted_target_height
tile_height -= reduction_step
new_target_height = best_adjusted_target_height
new_target_width = best_adjusted_target_width
tile_width = best_tile_width
tile_height = best_tile_height
print("--- TILE SIZE CALCULATED VALUES ---")
print(f"Overlap pixels (requested): {overlap_pixels}")
print(f"Tile Height (divisible by 8, max {max_tile_height_size}): {tile_height}")
print(f"Tile Width (divisible by 8, max {max_tile_width_size}): {tile_width}")
print(f"Number of Columns (horizontal tiles): {num_cols}")
print(f"Number of Rows (vertical tiles): {num_rows}")
print(f"Original Target Height: {target_height}")
print(f"Original Target Width: {target_width}")
print(f"New Target Height (total covered height): {new_target_height}")
print(f"New Target Width (total covered width): {new_target_width}\n")
return new_target_height, new_target_width, tile_height, tile_width
def do_calc_tile(target_height, target_width, overlap_pixels, max_tile_size):
new_target_height, new_target_width, tile_height, tile_width = calc_tile_size(
target_height, target_width, overlap_pixels, max_tile_size
)
return (
gr.update(value=tile_height),
gr.update(value=tile_width),
gr.update(value=new_target_height),
gr.update(value=new_target_width),
)
def clear_result():
return gr.update(value=None)
def run_for_examples(
left_prompt,
center_prompt,
right_prompt,
negative_prompt,
left_gs,
center_gs,
right_gs,
overlap_pixels,
steps,
generation_seed,
scheduler,
tile_height,
tile_width,
target_height,
target_width,
max_tile_width,
hdr,
):
return predict(
left_prompt,
center_prompt,
right_prompt,
negative_prompt,
left_gs,
center_gs,
right_gs,
overlap_pixels,
steps,
generation_seed,
scheduler,
tile_height,
tile_width,
target_height,
target_width,
hdr,
)
def randomize_seed_fn(generation_seed: int, randomize_seed: bool) -> int:
if randomize_seed:
generation_seed = random.randint(0, MAX_SEED)
return generation_seed
css = """
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
.gradio-container {
border-radius: 15px;
padding: 30px 40px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
margin: 40px 340px;
}
.gradio-container h1 {
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.fillable {
width: 100% !important;
max-width: unset !important;
}
#examples_container {
margin: auto;
width: 90%;
}
#examples_row {
justify-content: center;
}
#tips_row{
padding-left: 20px;
}
.sidebar {
border-radius: 10px;
padding: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.sidebar .toggle-button {
background: linear-gradient(90deg, #fbbf24, #fcd34d) !important;
border: none;
padding: 12px 24px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
border-radius: 5px;
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
.toggle-button:hover {
transform: scale(1.05);
}
"""
title = """<h1 align="center">Mixture-of-Diffusers for SDXL Tiling Pipeline🤗</h1>
<div style="display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow:hidden;">
<span>This <a href="https://github.com/DEVAIEXP/mixture-of-diffusers-sdxl-tiling">project</a> implements a SDXL tiling pipeline based on the original project: <a href='https://github.com/albarji/mixture-of-diffusers'>Mixture-of-Diffusers</a>. For more information, see the:
<a href="https://arxiv.org/pdf/2302.02412">📜 paper </a>
</div>
"""
tips = """
### Method
The method proposed here strives to provide a better tool for image composition by using several diffusion processes in parallel, each configured with a specific prompt and settings, and focused on a particular region of the image. The mixture of diffusion processes is done in a way that harmonizes the generation process, preventing "seam" effects in the generated image.
Using several diffusion processes in parallel has also practical advantages when generating very large images, as the GPU memory requirements are similar to that of generating an image of the size of a single tile.
For practical demonstration purposes, this demo only covers image generation using 1x3 tiles. However, in the pipeline, you can freely increase the number of rows and columns as well as specify a row overlap.
### Tips
1. Describe the same environment for all image elements in your prompt. This helps to better harmonize the final image.
2. Keep the same stylization in both prompts.
3. Test different overlap sizes.
4. Test fews increments on seed.
5. This may take a while.
6. Enjoy!
"""
about = """
📧 **Contact**
<br>
If you have any questions or suggestions, feel free to send your question to <b>[email protected]</b>.
"""
with gr.Blocks(css=css, theme=gr.themes.Citrus()) as app:
gr.Markdown(title)
with gr.Row():
with gr.Column(scale=7):
generate_button = gr.Button("Generate")
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("### Left region")
left_prompt = gr.Textbox(lines=4, label="Prompt for left side of the image")
left_gs = gr.Slider(minimum=0, maximum=15, value=7, step=1, label="Left CFG scale")
with gr.Column(scale=1):
gr.Markdown("### Center region")
center_prompt = gr.Textbox(lines=4, label="Prompt for the center of the image")
center_gs = gr.Slider(minimum=0, maximum=15, value=7, step=1, label="Center CFG scale")
with gr.Column(scale=1):
gr.Markdown("### Right region")
right_prompt = gr.Textbox(lines=4, label="Prompt for the right side of the image")
right_gs = gr.Slider(minimum=0, maximum=15, value=7, step=1, label="Right CFG scale")
with gr.Row():
negative_prompt = gr.Textbox(
lines=2,
label="Negative prompt for the image",
value="nsfw, lowres, bad anatomy, bad hands, duplicate, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, blurry",
)
with gr.Row():
result = gr.Image(
label="Generated Image",
show_label=True,
format="png",
interactive=False,
# allow_preview=True,
# preview=True,
scale=1,
)
with gr.Column():
gr.Markdown(tips)
with gr.Sidebar(label="Parameters", open=True):
gr.Markdown("### General parameters")
with gr.Row():
height = gr.Slider(label="Height", value=1024, step=8, visible=True, minimum=512, maximum=1024)
width = gr.Slider(label="Width", value=1280, step=8, visible=True, minimum=512, maximum=3840)
overlap = gr.Slider(minimum=0, maximum=512, value=128, step=8, label="Tile Overlap")
max_tile_size = gr.Dropdown(label="Max. Tile Size", choices=[1024, 1280], value=1280)
calc_tile = gr.Button("Calculate Tile Size")
with gr.Row():
tile_height = gr.Textbox(label="Tile height", value=1024, interactive=False)
tile_width = gr.Textbox(label="Tile width", value=1024, interactive=False)
with gr.Row():
new_target_height = gr.Textbox(label="New image height", value=1024, interactive=False)
new_target_width = gr.Textbox(label="New image width", value=1024, interactive=False)
with gr.Row():
steps = gr.Slider(minimum=1, maximum=50, value=30, step=1, label="Inference steps")
generation_seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=0)
randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
with gr.Row():
hdr = gr.Slider(minimum=0, maximum=1, value=0, step=0.1, label="HDR Effect")
scheduler = gr.Dropdown(
label="Sampler",
choices=list(SAMPLERS.keys()),
value="UniPC",
)
with gr.Row():
gr.Examples(
examples=[
[
"Iron Man, repulsor rays blasting enemies in destroyed cityscape, sparks, energy trails, crumbling skyscrapers, smoke, debris, cinematic lighting, photorealistic, intense action. Focus: Iron Man.",
"Captain America charging forward, vibranium shield deflecting energy blasts in destroyed cityscape, collapsing buildings, rubble streets, battle-damaged suit, determined expression, distant explosions, cinematic composition, realistic rendering. Focus: Captain America.",
"Thor wielding Stormbreaker in destroyed cityscape, lightning crackling, powerful strike downwards, shattered buildings, burning debris, ground trembling, Asgardian armor, cinematic photography, realistic details. Focus: Thor.",
negative_prompt.value,
5,
5,
5,
160,
30,
619517442,
"UniPC",
1024,
1280,
1024,
3840,
1024,
0,
],
[
"A charming house in the countryside, by jakub rozalski, sunset lighting, elegant, highly detailed, smooth, sharp focus, artstation, stunning masterpiece",
"A dirt road in the countryside crossing pastures, by jakub rozalski, sunset lighting, elegant, highly detailed, smooth, sharp focus, artstation, stunning masterpiece",
"An old and rusty giant robot lying on a dirt road, by jakub rozalski, dark sunset lighting, elegant, highly detailed, smooth, sharp focus, artstation, stunning masterpiece",
negative_prompt.value,
7,
7,
7,
256,
30,
358867853,
"DPM++ 3M Karras",
1024,
1280,
1024,
3840,
1280,
0,
],
[
"Abstract decorative illustration, by joan miro and gustav klimt and marlina vera and loish, elegant, intricate, highly detailed, smooth, sharp focus, vibrant colors, artstation, stunning masterpiece",
"Abstract decorative illustration, by joan miro and gustav klimt and marlina vera and loish, elegant, intricate, highly detailed, smooth, sharp focus, vibrant colors, artstation, stunning masterpiece",
"Abstract decorative illustration, by joan miro and gustav klimt and marlina vera and loish, elegant, intricate, highly detailed, smooth, sharp focus, vibrant colors, artstation, stunning masterpiece",
negative_prompt.value,
7,
7,
7,
128,
30,
580541206,
"LMS",
1024,
768,
1024,
2048,
1280,
0,
],
[
"Magical diagrams and runes written with chalk on a blackboard, elegant, intricate, highly detailed, smooth, sharp focus, artstation, stunning masterpiece",
"Magical diagrams and runes written with chalk on a blackboard, elegant, intricate, highly detailed, smooth, sharp focus, artstation, stunning masterpiece",
"Magical diagrams and runes written with chalk on a blackboard, elegant, intricate, highly detailed, smooth, sharp focus, artstation, stunning masterpiece",
negative_prompt.value,
9,
9,
9,
128,
30,
12591765619,
"LMS",
1024,
768,
1024,
2048,
1280,
0,
],
],
inputs=[
left_prompt,
center_prompt,
right_prompt,
negative_prompt,
left_gs,
center_gs,
right_gs,
overlap,
steps,
generation_seed,
scheduler,
tile_height,
tile_width,
height,
width,
max_tile_size,
hdr,
],
fn=run_for_examples,
outputs=result,
cache_examples=True,
)
event_calc_tile_size = {
"fn": do_calc_tile,
"inputs": [height, width, overlap, max_tile_size],
"outputs": [tile_height, tile_width, new_target_height, new_target_width],
}
calc_tile.click(**event_calc_tile_size)
generate_button.click(
fn=clear_result,
inputs=None,
outputs=result,
).then(**event_calc_tile_size).then(
fn=randomize_seed_fn,
inputs=[generation_seed, randomize_seed],
outputs=generation_seed,
queue=False,
api_name=False,
).then(
fn=predict,
inputs=[
left_prompt,
center_prompt,
right_prompt,
negative_prompt,
left_gs,
center_gs,
right_gs,
overlap,
steps,
generation_seed,
scheduler,
tile_height,
tile_width,
new_target_height,
new_target_width,
hdr,
],
outputs=result,
)
gr.Markdown(about)
app.launch(share=False)
|