Spaces:
Running
on
Zero
Running
on
Zero
File size: 13,510 Bytes
efc40ec a4f92f5 2143c77 efc40ec cc2c622 2143c77 efc40ec 2143c77 efc40ec a4f92f5 efc40ec 7b934fb efc40ec 2143c77 efc40ec 2143c77 efc40ec 2143c77 efc40ec 2143c77 efc40ec 2143c77 daf6c0f efc40ec daf6c0f 7b934fb efc40ec 2143c77 efc40ec a4f92f5 efc40ec 4039bad efc40ec 7b934fb a4f92f5 7b934fb b402beb 7b934fb efc40ec daf6c0f efc40ec 7b934fb efc40ec 7b934fb 2143c77 efc40ec 7b934fb daf6c0f 7b934fb daf6c0f efc40ec 7b934fb 2143c77 efc40ec 7b934fb efc40ec 7b934fb efc40ec 2143c77 efc40ec 4039bad efc40ec 2143c77 daf6c0f 4039bad efc40ec daf6c0f efc40ec 2143c77 efc40ec 4039bad efc40ec 2143c77 efc40ec 4039bad efc40ec 4039bad efc40ec 2143c77 efc40ec 2143c77 efc40ec 2143c77 efc40ec 2143c77 efc40ec 4039bad efc40ec 7b934fb efc40ec 2143c77 efc40ec daf6c0f efc40ec 2143c77 |
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 |
from typing import Tuple, Optional
import os
import gradio as gr
import numpy as np
import random
import spaces
import cv2
from diffusers import DiffusionPipeline
from diffusers import FluxInpaintPipeline
import torch
from PIL import Image, ImageFilter
from huggingface_hub import login
from diffusers import AutoencoderTiny, AutoencoderKL
from huggingface_hub import hf_hub_download, HfFileSystem, ModelCard, snapshot_download
import copy
import random
import time
import boto3
from io import BytesIO
from datetime import datetime
from diffusers.utils import load_image
import json
from utils.florence import load_florence_model, run_florence_inference, \
FLORENCE_OPEN_VOCABULARY_DETECTION_TASK
from utils.sam import load_sam_image_model, run_sam_inference
import supervision as sv
HF_TOKEN = os.environ.get("HF_TOKEN")
login(token=HF_TOKEN)
MAX_SEED = np.iinfo(np.int32).max
IMAGE_SIZE = 1024
# init
dtype = torch.bfloat16
device = "cuda" if torch.cuda.is_available() else "cpu"
base_model = "black-forest-labs/FLUX.1-dev"
taef1 = AutoencoderTiny.from_pretrained("madebyollin/taef1", torch_dtype=dtype).to(device)
good_vae = AutoencoderKL.from_pretrained(base_model, subfolder="vae", torch_dtype=dtype).to(device)
pipe = FluxInpaintPipeline.from_pretrained(base_model, torch_dtype=dtype, vae=taef1).to(device)
# FLORENCE_MODEL, FLORENCE_PROCESSOR = load_florence_model(device=device)
# SAM_IMAGE_MODEL = load_sam_image_model(device=device)
class calculateDuration:
def __init__(self, activity_name=""):
self.activity_name = activity_name
def __enter__(self):
self.start_time = time.time()
return self
def __exit__(self, exc_type, exc_value, traceback):
self.end_time = time.time()
self.elapsed_time = self.end_time - self.start_time
if self.activity_name:
print(f"Elapsed time for {self.activity_name}: {self.elapsed_time:.6f} seconds")
else:
print(f"Elapsed time: {self.elapsed_time:.6f} seconds")
def calculate_image_dimensions_for_flux(
original_resolution_wh: Tuple[int, int],
maximum_dimension: int = IMAGE_SIZE
) -> Tuple[int, int]:
width, height = original_resolution_wh
if width > height:
scaling_factor = maximum_dimension / width
else:
scaling_factor = maximum_dimension / height
new_width = int(width * scaling_factor)
new_height = int(height * scaling_factor)
new_width = new_width - (new_width % 32)
new_height = new_height - (new_height % 32)
return new_width, new_height
def is_mask_empty(image: Image.Image) -> bool:
gray_img = image.convert("L")
pixels = list(gray_img.getdata())
return all(pixel == 0 for pixel in pixels)
def process_mask(
mask: Image.Image,
mask_inflation: Optional[int] = None,
mask_blur: Optional[int] = None
) -> Image.Image:
"""
Inflates and blurs the white regions of a mask.
Args:
mask (Image.Image): The input mask image.
mask_inflation (Optional[int]): The number of pixels to inflate the mask by.
mask_blur (Optional[int]): The radius of the Gaussian blur to apply.
Returns:
Image.Image: The processed mask with inflated and/or blurred regions.
"""
if mask_inflation and mask_inflation > 0:
mask_array = np.array(mask)
kernel = np.ones((mask_inflation, mask_inflation), np.uint8)
mask_array = cv2.dilate(mask_array, kernel, iterations=1)
mask = Image.fromarray(mask_array)
if mask_blur and mask_blur > 0:
mask = mask.filter(ImageFilter.GaussianBlur(radius=mask_blur))
return mask
def upload_image_to_r2(image, account_id, access_key, secret_key, bucket_name):
print("upload_image_to_r2", account_id, access_key, secret_key, bucket_name)
connectionUrl = f"https://{account_id}.r2.cloudflarestorage.com"
s3 = boto3.client(
's3',
endpoint_url=connectionUrl,
region_name='auto',
aws_access_key_id=access_key,
aws_secret_access_key=secret_key
)
current_time = datetime.now().strftime("%Y/%m/%d/%H%M%S")
image_file = f"generated_images/{current_time}_{random.randint(0, MAX_SEED)}.png"
buffer = BytesIO()
image.save(buffer, "PNG")
buffer.seek(0)
s3.upload_fileobj(buffer, bucket_name, image_file)
print("upload finish", image_file)
return image_file
@spaces.GPU(duration=60)
def run_flux(
image: Image.Image,
mask: Image.Image,
prompt: str,
lora_path: str,
lora_weights: str,
lora_scale: float,
seed_slicer: int,
randomize_seed_checkbox: bool,
strength_slider: float,
num_inference_steps_slider: int,
resolution_wh: Tuple[int, int],
) -> Image.Image:
print("Running FLUX...")
if lora_path and lora_weights:
with calculateDuration("load lora"):
print("start to load lora", lora_path, lora_weights)
pipe.unload_lora_weights()
pipe.load_lora_weights(lora_path, weight_name=lora_weights)
width, height = resolution_wh
if randomize_seed_checkbox:
seed_slicer = random.randint(0, MAX_SEED)
generator = torch.Generator().manual_seed(seed_slicer)
with calculateDuration("run pipe"):
genearte_image = pipe(
prompt=prompt,
image=image,
mask_image=mask,
width=width,
height=height,
strength=strength_slider,
generator=generator,
num_inference_steps=num_inference_steps_slider,
max_sequence_length=256,
joint_attention_kwargs={"scale": lora_scale}
).images[0]
return genearte_image
def process(
image_url: str,
mask_url: str,
inpainting_prompt_text: str,
mask_inflation_slider: int,
mask_blur_slider: int,
seed_slicer: int,
randomize_seed_checkbox: bool,
strength_slider: float,
num_inference_steps_slider: int,
lora_path: str,
lora_weights: str,
lora_scale: str,
upload_to_r2: bool,
account_id: str,
access_key: str,
secret_key: str,
bucket:str
):
result = {"status": "false", "message": ""}
if not image_url:
gr.Info("please enter image url for inpaiting")
result["message"] = "invalid image url"
return json.dumps(result)
if not inpainting_prompt_text:
gr.Info("Please enter inpainting text prompt.")
result["message"] = "invalid inpainting prompt"
return json.dumps(result)
with calculateDuration("load image"):
image = load_image(image_url)
mask = load_image(mask_url)
if not image or not mask:
gr.Info("Please upload an image & mask by url.")
result["message"] = "can not load image"
return json.dumps(result)
# generate
width, height = calculate_image_dimensions_for_flux(original_resolution_wh=image.size)
image = image.resize((width, height), Image.LANCZOS)
mask = mask.resize((width, height), Image.LANCZOS)
mask = process_mask(mask, mask_inflation=mask_inflation_slider, mask_blur=mask_blur_slider)
image = run_flux(
image=image,
mask=mask,
prompt=inpainting_prompt_text,
lora_path=lora_path,
lora_scale=lora_scale,
lora_weights=lora_weights,
seed_slicer=seed_slicer,
randomize_seed_checkbox=randomize_seed_checkbox,
strength_slider=strength_slider,
num_inference_steps_slider=num_inference_steps_slider,
resolution_wh=(width, height)
)
if upload_to_r2:
url = upload_image_to_r2(image, account_id, access_key, secret_key, bucket)
result = {"status": "success", "url": url}
else:
result = {"status": "success", "message": "Image generated but not uploaded"}
return json.dumps(result)
with gr.Blocks() as demo:
with gr.Row():
with gr.Column():
image_url = gr.Text(
label="Orginal image url",
show_label=True,
max_lines=1,
placeholder="Enter image url for inpainting",
container=False,
)
mask_url = gr.Text(
label="Mask image url",
show_label=True,
max_lines=1,
placeholder="Enter url of masking",
container=False,
)
inpainting_prompt_text_component = gr.Text(
label="Inpainting prompt",
show_label=True,
max_lines=1,
placeholder="Enter text to generate inpainting",
container=False,
)
submit_button_component = gr.Button(value='Submit', variant='primary', scale=0)
with gr.Accordion("Lora Settings", open=True):
lora_path = gr.Textbox(
label="Lora model path",
show_label=True,
max_lines=1,
placeholder="Enter your model path",
info="Currently, only LoRA hosted on Hugging Face'model can be loaded properly.",
value=""
)
lora_weights = gr.Textbox(
label="Lora weights",
show_label=True,
max_lines=1,
placeholder="Enter your lora weights name",
value=""
)
lora_scale = gr.Slider(
label="Lora scale",
show_label=True,
minimum=0,
maximum=1,
step=0.1,
value=0.9,
)
with gr.Accordion("Advanced Settings", open=False):
with gr.Row():
mask_inflation_slider_component = gr.Slider(
label="Mask inflation",
info="Adjusts the amount of mask edge expansion before "
"inpainting.",
minimum=0,
maximum=20,
step=1,
value=5,
)
mask_blur_slider_component = gr.Slider(
label="Mask blur",
info="Controls the intensity of the Gaussian blur applied to "
"the mask edges.",
minimum=0,
maximum=20,
step=1,
value=5,
)
seed_slicer_component = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=42,
)
randomize_seed_checkbox_component = gr.Checkbox(
label="Randomize seed", value=True)
with gr.Row():
strength_slider_component = gr.Slider(
label="Strength",
info="Indicates extent to transform the reference `image`. "
"Must be between 0 and 1. `image` is used as a starting "
"point and more noise is added the higher the `strength`.",
minimum=0,
maximum=1,
step=0.01,
value=0.85,
)
num_inference_steps_slider_component = gr.Slider(
label="Number of inference steps",
info="The number of denoising steps. More denoising steps "
"usually lead to a higher quality image at the",
minimum=1,
maximum=50,
step=1,
value=20,
)
with gr.Accordion("R2 Settings", open=False):
upload_to_r2 = gr.Checkbox(label="Upload to R2", value=False)
with gr.Row():
account_id = gr.Textbox(label="Account Id", placeholder="Enter R2 account id")
bucket = gr.Textbox(label="Bucket Name", placeholder="Enter R2 bucket name here")
with gr.Row():
access_key = gr.Textbox(label="Access Key", placeholder="Enter R2 access key here")
secret_key = gr.Textbox(label="Secret Key", placeholder="Enter R2 secret key here")
with gr.Column():
output_json_component = gr.Textbox()
submit_button_component.click(
fn=process,
inputs=[
image_url,
mask_url,
inpainting_prompt_text_component,
mask_inflation_slider_component,
mask_blur_slider_component,
seed_slicer_component,
randomize_seed_checkbox_component,
strength_slider_component,
num_inference_steps_slider_component,
lora_path,
lora_weights,
lora_scale,
upload_to_r2,
account_id,
access_key,
secret_key,
bucket
],
outputs=[
output_json_component
]
)
demo.queue().launch() |