uhdessai commited on
Commit
f489b31
·
verified ·
1 Parent(s): 949376a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -343,14 +343,14 @@ with gr.Blocks(title="Style Mixing for Clothing Designs") as iface:
343
  # Upload Inputs
344
  with gr.Group():
345
  with gr.Row():
346
- image1_input = gr.Image(label="👗 First Clothing Image", type="filepath")
347
- image2_input = gr.Image(label="👗 Second Clothing Image", type="filepath")
348
  mix_slider = gr.Slider(label="🧪 Style Mixing Intensity", minimum=0, maximum=9, step=1, value=5, info="0 = Mostly Left | 9 = Mostly Right")
349
 
350
  # Output & Actions
351
  with gr.Group():
352
  with gr.Row():
353
- output_image = gr.Image(label="🧵 Mixed Clothing Design")
354
  with gr.Row():
355
  mix_button = gr.Button("✨ Mix Styles")
356
  save_button = gr.Button("💾 Save to Database")
 
343
  # Upload Inputs
344
  with gr.Group():
345
  with gr.Row():
346
+ image1_input = gr.Image(label="👗 First Clothing Image", type="filepath",height=256, width=256)
347
+ image2_input = gr.Image(label="👗 Second Clothing Image", type="filepath",height=256, width=256)
348
  mix_slider = gr.Slider(label="🧪 Style Mixing Intensity", minimum=0, maximum=9, step=1, value=5, info="0 = Mostly Left | 9 = Mostly Right")
349
 
350
  # Output & Actions
351
  with gr.Group():
352
  with gr.Row():
353
+ output_image = gr.Image(label="🧵 Mixed Clothing Design",height=256, width=256)
354
  with gr.Row():
355
  mix_button = gr.Button("✨ Mix Styles")
356
  save_button = gr.Button("💾 Save to Database")