linoyts HF Staff commited on
Commit
8105fe7
·
verified ·
1 Parent(s): db84dc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -248,11 +248,12 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as demo:
248
  gr.Markdown(""" Qwen Image Edit 2509 ✨ Using [dx8152's Qwen-Image-Edit-2509 Fusion LoRA](https://huggingface.co/dx8152/Qwen-Image-Edit-2509-Fusion) and [lightx2v Qwen-Image-Lightning LoRA]() for 4-step inference 💨 """ )
249
  with gr.Row():
250
  with gr.Column():
251
- gallery = gr.Gallery(
252
- label="Upload subject images (background auto removed)",
253
- columns=3, rows=2, height="auto", type="pil"
254
- )
255
- image_background = gr.Image(label="Background Image", type="pil", visible=True)
 
256
  prompt = gr.Textbox(label="Prompt")
257
  run_button = gr.Button("Fuse Images", variant="primary")
258
 
 
248
  gr.Markdown(""" Qwen Image Edit 2509 ✨ Using [dx8152's Qwen-Image-Edit-2509 Fusion LoRA](https://huggingface.co/dx8152/Qwen-Image-Edit-2509-Fusion) and [lightx2v Qwen-Image-Lightning LoRA]() for 4-step inference 💨 """ )
249
  with gr.Row():
250
  with gr.Column():
251
+ with gr.Row():
252
+ gallery = gr.Gallery(
253
+ label="Upload subject images (background auto removed)",
254
+ columns=3, rows=2, height="auto", type="pil"
255
+ )
256
+ image_background = gr.Image(label="Background Image", type="pil", visible=True)
257
  prompt = gr.Textbox(label="Prompt")
258
  run_button = gr.Button("Fuse Images", variant="primary")
259