Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -269,13 +269,13 @@ with image_blocks as demo:
|
|
269 |
topwear_image = gr.Image(label="Topwear", sources='upload', type="pil")
|
270 |
with gr.Row():
|
271 |
topwear_desc = gr.Textbox(placeholder="Description of garment ex) Short Sleeve Round Neck T-shirts", show_label=False, elem_id="prompt")
|
272 |
-
|
273 |
with gr.Column(scale=1):
|
274 |
with gr.Row():
|
275 |
bottomwear_image = gr.Image(label="Bottomwear", sources='upload', type="pil")
|
276 |
with gr.Row():
|
277 |
bottomwear_desc = gr.Textbox(placeholder="Description of garment ex) Cargo pants", show_label=False, elem_id="prompt")
|
278 |
-
|
279 |
|
280 |
with gr.Column():
|
281 |
with gr.Accordion(label="Advanced Settings", open=False):
|
|
|
269 |
topwear_image = gr.Image(label="Topwear", sources='upload', type="pil")
|
270 |
with gr.Row():
|
271 |
topwear_desc = gr.Textbox(placeholder="Description of garment ex) Short Sleeve Round Neck T-shirts", show_label=False, elem_id="prompt")
|
272 |
+
example = gr.Examples(inputs=[topwear_image,topwear_desc], examples_per_page=4,examples=topwear_ex_list)
|
273 |
with gr.Column(scale=1):
|
274 |
with gr.Row():
|
275 |
bottomwear_image = gr.Image(label="Bottomwear", sources='upload', type="pil")
|
276 |
with gr.Row():
|
277 |
bottomwear_desc = gr.Textbox(placeholder="Description of garment ex) Cargo pants", show_label=False, elem_id="prompt")
|
278 |
+
example = gr.Examples(inputs=[bottomwear_image,bottomwear_desc], examples_per_page=4, examples=bottomwear_ex_list)
|
279 |
|
280 |
with gr.Column():
|
281 |
with gr.Accordion(label="Advanced Settings", open=False):
|