Spaces:
Running
on
Zero
Running
on
Zero
Back to normal changes
Browse files
app.py
CHANGED
@@ -272,13 +272,10 @@ with image_blocks as demo:
|
|
272 |
with gr.Row():
|
273 |
is_checked_crop = gr.Checkbox(label="Yes", info="Use auto-crop & resizing",value=False)
|
274 |
|
275 |
-
gallery = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery", columns=[5], rows=[3], object_fit="contain", height="auto")
|
276 |
-
|
277 |
example = gr.Examples(
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
gallery
|
282 |
)
|
283 |
|
284 |
with gr.Column():
|
|
|
272 |
with gr.Row():
|
273 |
is_checked_crop = gr.Checkbox(label="Yes", info="Use auto-crop & resizing",value=False)
|
274 |
|
|
|
|
|
275 |
example = gr.Examples(
|
276 |
+
inputs=imgs,
|
277 |
+
examples_per_page=3,
|
278 |
+
examples=human_ex_list
|
|
|
279 |
)
|
280 |
|
281 |
with gr.Column():
|