Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -465,11 +465,11 @@ with gr.Blocks(delete_cache=(600, 600)) as demo:
|
|
465 |
output_buf = gr.State()
|
466 |
|
467 |
#Example images at the bottom of the page
|
468 |
-
with gr.Row() as single_image_example:
|
469 |
examples = gr.Examples(
|
470 |
examples=[
|
471 |
-
f'assets/
|
472 |
-
for image in os.listdir("assets/
|
473 |
],
|
474 |
inputs=[image_prompt],
|
475 |
fn=preprocess_image,
|
|
|
465 |
output_buf = gr.State()
|
466 |
|
467 |
#Example images at the bottom of the page
|
468 |
+
with gr.Row(visible=False) as single_image_example:
|
469 |
examples = gr.Examples(
|
470 |
examples=[
|
471 |
+
f'assets/example_image/{image}'
|
472 |
+
for image in os.listdir("assets/example_image")
|
473 |
],
|
474 |
inputs=[image_prompt],
|
475 |
fn=preprocess_image,
|