multimodalart HF staff commited on
Commit
92bd0c6
·
verified ·
1 Parent(s): 9ba15d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -16
app.py CHANGED
@@ -232,7 +232,7 @@ def merge_incompatible_lora(full_path_lora, lora_scale):
232
  del weights_sd
233
  del lora_model
234
  @spaces.GPU
235
- def generate_image(prompt, negative, face_emb, face_image, face_kps, image_strength, guidance_scale, face_strength, depth_control_scale, repo_name, loaded_state_dict, lora_scale, sdxl_loras, selected_state_index, st):
236
  print(loaded_state_dict)
237
  et = time.time()
238
  elapsed_time = et - st
@@ -292,8 +292,8 @@ def generate_image(prompt, negative, face_emb, face_image, face_kps, image_stren
292
  pooled_prompt_embeds=pooled,
293
  negative_prompt_embeds=negative_conditioning,
294
  negative_pooled_prompt_embeds=negative_pooled,
295
- width=1024,
296
- height=1024,
297
  image_embeds=face_emb,
298
  image=face_image,
299
  strength=1-image_strength,
@@ -308,7 +308,7 @@ def generate_image(prompt, negative, face_emb, face_image, face_kps, image_stren
308
  last_lora = repo_name
309
  return image
310
 
311
- def run_lora(face_image, prompt, negative, lora_scale, selected_state, face_strength, image_strength, guidance_scale, depth_control_scale, sdxl_loras, custom_lora, progress=gr.Progress(track_tqdm=True)):
312
  print("Custom LoRA: ", custom_lora)
313
  custom_lora_path = custom_lora[0] if custom_lora else None
314
  selected_state_index = selected_state.index if selected_state else -1
@@ -362,7 +362,18 @@ def run_lora(face_image, prompt, negative, lora_scale, selected_state, face_stre
362
  print('Small content processing took: ', elapsed_time, 'seconds')
363
 
364
  st = time.time()
365
- image = generate_image(prompt, negative, face_emb, face_image, face_kps, image_strength, guidance_scale, face_strength, depth_control_scale, repo_name, full_path_lora, lora_scale, sdxl_loras, selected_state_index, st)
 
 
 
 
 
 
 
 
 
 
 
366
  return (face_image, image), gr.update(visible=True)
367
 
368
  def shuffle_gallery(sdxl_loras):
@@ -542,6 +553,7 @@ with gr.Blocks(css="custom.css") as demo:
542
  image_strength = gr.Slider(0, 1, value=0.15, step=0.01, label="Image strength", info="Higher values increase the similarity with the structure/colors of the original photo")
543
  guidance_scale = gr.Slider(0, 50, value=7, step=0.1, label="Guidance Scale")
544
  depth_control_scale = gr.Slider(0, 1, value=0.8, step=0.01, label="Zoe Depth ControlNet strenght")
 
545
  prompt_title = gr.Markdown(
546
  value="### Click on a LoRA in the gallery to select it",
547
  visible=True,
@@ -575,24 +587,17 @@ with gr.Blocks(css="custom.css") as demo:
575
  # queue=False,
576
  # show_progress=False
577
  #)
578
- prompt.submit(
 
579
  fn=check_selected,
580
  inputs=[selected_state, custom_loaded_lora],
581
  show_progress=False
582
  ).success(
583
  fn=run_lora,
584
- inputs=[photo, prompt, negative, weight, selected_state, face_strength, image_strength, guidance_scale, depth_control_scale, gr_sdxl_loras, custom_loaded_lora],
585
- outputs=[result, share_group],
586
- )
587
- button.click(
588
- fn=check_selected,
589
- inputs=[selected_state, custom_loaded_lora],
590
- show_progress=False
591
- ).success(
592
- fn=run_lora,
593
- inputs=[photo, prompt, negative, weight, selected_state, face_strength, image_strength, guidance_scale, depth_control_scale, gr_sdxl_loras, custom_loaded_lora],
594
  outputs=[result, share_group],
595
  )
 
596
  share_button.click(None, [], [], js=share_js)
597
  demo.load(fn=classify_gallery, inputs=[gr_sdxl_loras], outputs=[gallery, gr_sdxl_loras], js=js)
598
 
 
232
  del weights_sd
233
  del lora_model
234
  @spaces.GPU
235
+ def generate_image(prompt, negative, face_emb, face_image, face_kps, image_strength, guidance_scale, face_strength, depth_control_scale, width, height, repo_name, loaded_state_dict, lora_scale, sdxl_loras, selected_state_index, st):
236
  print(loaded_state_dict)
237
  et = time.time()
238
  elapsed_time = et - st
 
292
  pooled_prompt_embeds=pooled,
293
  negative_prompt_embeds=negative_conditioning,
294
  negative_pooled_prompt_embeds=negative_pooled,
295
+ width=width,
296
+ height=height,
297
  image_embeds=face_emb,
298
  image=face_image,
299
  strength=1-image_strength,
 
308
  last_lora = repo_name
309
  return image
310
 
311
+ def run_lora(face_image, prompt, negative, lora_scale, selected_state, face_strength, image_strength, guidance_scale, depth_control_scale, aspect_ratio, sdxl_loras, custom_lora, progress=gr.Progress(track_tqdm=True)):
312
  print("Custom LoRA: ", custom_lora)
313
  custom_lora_path = custom_lora[0] if custom_lora else None
314
  selected_state_index = selected_state.index if selected_state else -1
 
362
  print('Small content processing took: ', elapsed_time, 'seconds')
363
 
364
  st = time.time()
365
+
366
+ if(aspect_ratio == "portrait"):
367
+ width = 1024
368
+ height = 1536
369
+ elif(aspect_ratio == "landscape"):
370
+ width = 1536
371
+ height = 1024
372
+ else:
373
+ width = 1024
374
+ height = 1024
375
+
376
+ image = generate_image(prompt, negative, face_emb, face_image, face_kps, image_strength, guidance_scale, face_strength, depth_control_scale, width, height, repo_name, full_path_lora, lora_scale, sdxl_loras, selected_state_index, st)
377
  return (face_image, image), gr.update(visible=True)
378
 
379
  def shuffle_gallery(sdxl_loras):
 
553
  image_strength = gr.Slider(0, 1, value=0.15, step=0.01, label="Image strength", info="Higher values increase the similarity with the structure/colors of the original photo")
554
  guidance_scale = gr.Slider(0, 50, value=7, step=0.1, label="Guidance Scale")
555
  depth_control_scale = gr.Slider(0, 1, value=0.8, step=0.01, label="Zoe Depth ControlNet strenght")
556
+ aspect_ratio = gr.CheckboxGroup(choices=["square", "portrait", "landscape"], value="square", label="Aspect Ratio")
557
  prompt_title = gr.Markdown(
558
  value="### Click on a LoRA in the gallery to select it",
559
  visible=True,
 
587
  # queue=False,
588
  # show_progress=False
589
  #)
590
+ gr.on(
591
+ triggers=[prompt.submit, button.click],
592
  fn=check_selected,
593
  inputs=[selected_state, custom_loaded_lora],
594
  show_progress=False
595
  ).success(
596
  fn=run_lora,
597
+ inputs=[photo, prompt, negative, weight, selected_state, face_strength, image_strength, guidance_scale, depth_control_scale, aspect_ratio, gr_sdxl_loras, custom_loaded_lora],
 
 
 
 
 
 
 
 
 
598
  outputs=[result, share_group],
599
  )
600
+
601
  share_button.click(None, [], [], js=share_js)
602
  demo.load(fn=classify_gallery, inputs=[gr_sdxl_loras], outputs=[gallery, gr_sdxl_loras], js=js)
603