Spaces:
Running on Zero
Running on Zero
File size: 16,651 Bytes
c63a46f 1b95aae c63a46f 1b95aae c63a46f 1b95aae c63a46f 1b95aae a9c394e 1b95aae c63a46f 626ec2b c63a46f 626ec2b c63a46f 1b95aae c63a46f 1b95aae 278534b 1b95aae c63a46f 1b95aae c63a46f 1b95aae c63a46f 1b95aae efa45c8 1b95aae c63a46f 1b95aae c63a46f 1b95aae c63a46f 1b95aae c63a46f 1b95aae d578a96 1b95aae c63a46f 1b95aae c63a46f 1b95aae c63a46f be878d2 c63a46f 15ef11a d578a96 1b95aae c63a46f 15ef11a c63a46f 15ef11a c63a46f eb4f277 c63a46f 48ba2ea 278534b be878d2 15ef11a be878d2 278534b be878d2 278534b 887e631 c63a46f f6629b6 1b95aae 278534b 1b95aae 1b3897d c63a46f 1b95aae c63a46f 1b95aae c63a46f 1b95aae c63a46f be878d2 | 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 | import gradio as gr
import numpy as np
import random
import torch
import spaces
from PIL import Image
#from diffsynth.pipelines.qwen_image import QwenImagePipeline, ModelConfig
from pipeline_qwenimage_edit_plus import QwenImageEditPlusPipeline
from qwen_vl_utils import process_vision_info
import os
from huggingface_hub import hf_hub_download
def update_textbox(selected_items):
# Join the selected list of strings into a comma-separated string
return ", ".join(selected_items)
pipe = QwenImageEditPlusPipeline.from_pretrained("Qwen/Qwen-Image-Edit-2509", torch_dtype=torch.bfloat16)
print("pipeline loaded")
pipe.to('cuda')
pipe.set_progress_bar_config(disable=None)
'''
pipe = QwenImagePipeline.from_pretrained(
torch_dtype=torch.bfloat16,
device="cuda",
model_configs=[
ModelConfig(model_id="Qwen/Qwen-Image-Edit-2509",
download_source='huggingface',
origin_file_pattern="transformer/diffusion_pytorch_model*.safetensors"),
ModelConfig(model_id="Qwen/Qwen-Image-Edit-2509",
download_source='huggingface',origin_file_pattern="text_encoder/model*.safetensors"),
ModelConfig(model_id="Qwen/Qwen-Image-Edit-2509",
download_source='huggingface',origin_file_pattern="vae/diffusion_pytorch_model.safetensors"),
],
tokenizer_config=None,
processor_config=ModelConfig(model_id="Qwen/Qwen-Image-Edit-2509",
download_source='huggingface',origin_file_pattern="processor/"),
)
'''
qwenstyle= hf_hub_download(repo_id="Tele-AI/TeleStyleV2", filename="diffusers-TeleStyleV2-QIE-2509-Lora-bf16.safetensors")
speedup = hf_hub_download(repo_id="Tele-AI/TeleStyleV2", filename="QIE-2509-Lightning-4steps-V1.0-bf16.safetensors")
pipe.load_lora_weights(
qwenstyle,adapter_name='style'
)
pipe.load_lora_weights(
speedup,adapter_name='dmd'
)
pipe.set_adapters(["style", "dmd",], adapter_weights=[1.0, 1.0])
pipe.fuse_lora(adapter_names=["style", "dmd"], lora_scale=1.0)
pipe.unload_lora_weights()
dtype = torch.bfloat16
device = "cuda" if torch.cuda.is_available() else "cpu"
MAX_SEED = np.iinfo(np.int32).max
@spaces.GPU(size="xlarge")
def infer(
content_ref,
style_ref,
prompt,
seed=123,
randomize_seed=False,
true_guidance_scale=1.0,
num_inference_steps=4,
minedge=1024,
progress=gr.Progress(track_tqdm=True),
checkbox=[],
):
content_text_input='describe main objects (fewer than 3) with separated words, each word is separated by comma, the total number of words is strictly fewer than 3'
style_text_input='describe only the artistic style, material, stroke in 5 words, not objects.'
#pipe.text_encoder.eval()
content_prompt=''
style_prompt=''
if content_ref is not None:
content_ref=Image.fromarray(content_ref)
content_messages = [
{
"role": "user",
"content": [
{
"type": "image",
"image": content_ref,
},
{"type": "text", "text": content_text_input},
],
}
]
content_text = pipe.processor.apply_chat_template(
content_messages, tokenize=False, add_generation_prompt=True
)
image_inputs, video_inputs = process_vision_info(content_messages)
inputs = pipe.processor(
text=[content_text],
images=image_inputs,
videos=video_inputs,
padding=True,
return_tensors="pt",
)
inputs = inputs.to(device)
# Inference: Generation of the output
generated_ids = pipe.text_encoder.generate(**inputs, max_new_tokens=1024)
generated_ids_trimmed = [
out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
content_prompt = pipe.processor.batch_decode(
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)[0]
print(f"content_prompt={content_prompt}")
if style_ref is not None:
style_ref=Image.fromarray(style_ref)
style_messages = [
{
"role": "user",
"content": [
{
"type": "image",
"image": style_ref,
},
{"type": "text", "text": style_text_input},
],
}
]
style_text = pipe.processor.apply_chat_template(
style_messages, tokenize=False, add_generation_prompt=True
)
image_inputs, video_inputs = process_vision_info(style_messages)
inputs = pipe.processor(
text=[style_text],
images=image_inputs,
videos=video_inputs,
padding=True,
return_tensors="pt",
)
inputs = inputs.to(device)
# Inference: Generation of the output
generated_ids = pipe.text_encoder.generate(**inputs, max_new_tokens=1024)
generated_ids_trimmed = [
out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
style_prompt = pipe.processor.batch_decode(
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)[0]
print(f"style_prompt={style_prompt}")
if randomize_seed:
seed = random.randint(0, MAX_SEED)
sw,sh,w,h=0,0,0,0
if content_ref:
w,h=content_ref.size
#minedge=1024
if w>h:
r=w/h
h=minedge
w=int(h*r)-int(h*r)%16
else:
r=h/w
w=minedge
h=int(w*r)-int(w*r)%16
if style_ref:
sw,sh=style_ref.size
if sw>sh:
r=sw/sh
sh=minedge
sw=int(sh*r)-int(sh*r)%16
else:
r=sh/sw
sw=minedge
sh=int(sw*r)-int(sw*r)%16
print(f"Seed: {seed}, Steps: {num_inference_steps}, Guidance: {true_guidance_scale},")
if content_ref and style_ref:
images = [
content_ref.resize((w, h)),
style_ref.resize((sw, sh)) ,
#style_ref.resize((minedge, minedge)) ,
]
elif content_ref:
images = [
content_ref.resize((w, h)),
#style_ref.resize((sw, sh)) ,
#style_ref.resize((minedge, minedge)) ,
]
elif style_ref:
images = [
#content_ref.resize((w, h)),
style_ref.resize((sw, sh)) ,
#style_ref.resize((minedge, minedge)) ,
]
if "infer with content prompt" in checkbox and content_prompt not in prompt:
prompt=','.join([prompt,content_prompt])
if "infer with style prompt" in checkbox and style_prompt not in prompt:
prompt=','.join([prompt,style_prompt])
if "infer with content prompt" not in checkbox and content_prompt in prompt:
prompt=prompt.replace(content_prompt.strip(','),'')
if "infer with style prompt" not in checkbox and style_prompt in prompt:
prompt=prompt.replace(style_prompt.strip(),'')
prompt=prompt.strip(',')
print(f"Calling pipeline with prompt: '{prompt}'")
inputs = {
"image": images,
"prompt": prompt,
"generator": torch.manual_seed(seed),
"true_cfg_scale": true_guidance_scale,
"negative_prompt": " ",
"num_inference_steps": num_inference_steps,
"guidance_scale": true_guidance_scale,
"num_images_per_prompt": 1,
"width": w or sw,
"height": h or sh,
}
with torch.inference_mode():
image = pipe(**inputs)
image = image.images[0]
return image, seed, content_prompt, style_prompt, prompt
# --- Examples and UI Layout ---
examples = []
_HEADER_ = '''
<div style="text-align: center; max-width: 650px; margin: 0 auto;">
<h1 style="font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; display: contents;">TeleStyle V2</h1>
</div>
<p style="font-size: 1rem; margin-bottom: 1.5rem;">Paper: <a href='https://witcherofresearch.github.io/TeleStyleV2' target='_blank'>TeleStyle V2: Beyond Content-Preserving Style Transfer with Self-Distillation and Distribution-Matching-Distillation</a> | Codes: <a href='https://github.com/Tele-AI/TeleStyleV2' target='_blank'>GitHub</a></p>
<p style="font-size: 1rem; margin-bottom: 1.5rem;">Update: prompt enhancer provided, and the model supports content ref/style ref only input, which means you could use the model as an image editing model and style transfer model at the same time. So you don't have to provide a style reference now, the model also accepts prompt for style transfer, which makes the model more flexible. If you choose infer with content/style prompt, do not forget to clean the prompt box when you run new inference.</p>
<p style="font-size: 1rem; margin-bottom: 1.5rem;">If you encounter an Error with this demo, the most possible reason is ZeroGPU out-of-memory and the solution is to decrease the Min Edge of the generated image from 1024 to a lower value. </p>
'''
with gr.Blocks() as demo:
with gr.Column(elem_id="col-container"):
gr.Markdown(_HEADER_)
gr.Markdown("This is a demo of TeleStyle V2.")
with gr.Row():
with gr.Column():
with gr.Row():
content_ref = gr.Image(label="content ref", type="numpy", )
style_ref = gr.Image(label="style ref", type="numpy", )
#print(f"type(content_ref)={type(content_ref)}")
#input_images = gr.Gallery(label="Input Images", show_label=False, type="pil", interactive=True)
result = gr.Image(label="Result", show_label=True, type="pil")
#result = gr.Gallery(label="Result", show_label=True, type="pil")
with gr.Column():
checkbox=gr.CheckboxGroup(["infer with content prompt", "infer with style prompt"], label="Prompt Enhancer", )
content_prompt=gr.Text(
label="Content Reference Prompt",
show_label=True,
container=True,
)
style_prompt=gr.Text(
label="Style Reference Prompt",
show_label=True,
container=True,
)
prompt = gr.Text(
label="Prompt",
value='Style Transfer the style of Figure 2 to Figure 1, and keep the content and characteristics of Figure 1.',
show_label=True,
placeholder='Style Transfer the style of Figure 2 to Figure 1, and keep the content and characteristics of Figure 1.',
container=True,
)
run_button = gr.Button("Edit!", variant="primary")
with gr.Accordion("Advanced Settings", open=True):
# Negative prompt UI element is removed here
seed = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=123,
)
randomize_seed = gr.Checkbox(label="Randomize seed", value=False)
with gr.Row():
true_guidance_scale = gr.Slider(
label="CFG should be 1.0",
minimum=0,
maximum=10.0,
step=0.1,
value=1.0
)
num_inference_steps = gr.Slider(
label="Number of inference steps should be 4",
minimum=1,
maximum=50,
step=1,
value=4,
)
minedge = gr.Slider(
label="Min Edge of the generated image",
minimum=256,
maximum=2048,
step=8,
value=1024,
)
with gr.Row(), gr.Column():
gr.Markdown("## Examples")
gr.Markdown("changing the minedge could lead to different style similarity.")
default_prompt='Style Transfer the style of Figure 2 to Figure 1, and keep the content and characteristics of Figure 1.'
gr.Examples(examples=[
['./qwenstyleref/content_1.webp','./qwenstyleref/style_1.jpg','',123,False,1.0,4,1024,[]],
['./qwenstyleref/content_6.jpg','./qwenstyleref/style_6.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/style_6.png','./qwenstyleref/content_6.jpg','',123,False,1.0,4,1024,["infer with style prompt"]],
['./qwenstyleref/content_3.png','./qwenstyleref/style_3.png','',123,False,1.0,4,1024,[]],
['./qwenstyleref/content_4.png','./qwenstyleref/content_7.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/content_7.png','./qwenstyleref/content_4.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/content_9.jpg','./qwenstyleref/style_9.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/style_9.png','./qwenstyleref/content_9.jpg',default_prompt,123,False,1.0,4,1024,["infer with style prompt"]],
['./qwenstyleref/content_11.png','./qwenstyleref/style_11.jpg',default_prompt,123,False,1.0,4,832,[]],
['./qwenstyleref/content_9.jpg',None,"convert to photorealistic photograph",123,False,1.0,4,1024,[]],
],
inputs=[content_ref,
style_ref,
prompt,
seed,
randomize_seed,
true_guidance_scale,
num_inference_steps,
minedge,
checkbox
],
outputs=[result, seed, content_prompt, style_prompt,prompt],
fn=infer,
cache_examples=False
)
# gr.Examples(examples=examples, inputs=[prompt], outputs=[result, seed], fn=infer, cache_examples=False)
gr.on(
triggers=[run_button.click],
fn=infer,
inputs=[
content_ref,
style_ref,
prompt,
seed,
randomize_seed,
true_guidance_scale,
num_inference_steps,
minedge,
checkbox,
],
outputs=[result, seed, content_prompt, style_prompt,prompt],
)
if __name__ == "__main__":
demo.launch(server_name='0.0.0.0')
'''
['./qwenstyleref/pulpfiction_2.jpg','./qwenstyleref/styleref=6_style_ref.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/styleref=0_content_ref.png','./qwenstyleref/110.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/romanholiday_1.jpg','./qwenstyleref/s0099____1113_01_query_1_img_000146_1682705733350_08158389675901344.jpg.jpg',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/styleref=0_content_ref.png','./qwenstyleref/125.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/fallenangle.jpg','./qwenstyleref/styleref=s0038.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/styleref=0_content_ref.png','./qwenstyleref/styleref=s0572.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/startrooper1.jpg','./qwenstyleref/david-face-760x985.jpg','Style Transfer Figure 1 into marble material.',123,False,1.0,4,1024,[]],
['./qwenstyleref/startrooper1.jpg','./qwenstyleref/125.png',default_prompt, 123,False,1.0,4,1024,[]],
['./qwenstyleref/possession.png','./qwenstyleref/s0026____0907_01_query_0_img_000194_1682674358294_041656249089406583.jpeg.jpg',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/styleref=0_content_ref.png','./qwenstyleref/Jotarokujo.webp',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/wallstreet1.jpg','./qwenstyleref/034.png',default_prompt,123,False,1.0,4,1024,[]],
['./qwenstyleref/bird.jpeg','./qwenstyleref/styleref=s0539.png',default_prompt,123,False,1.0,4,1024,[]],
''' |