patrickvonplaten
commited on
Commit
·
67e191e
1
Parent(s):
38c4bf2
Update app.py
Browse files
app.py
CHANGED
@@ -289,18 +289,19 @@ with gr.Blocks() as demo:
|
|
289 |
with gr.Row():
|
290 |
prompt = gr.Markdown("")
|
291 |
with gr.Blocks():
|
292 |
-
with gr.
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
|
|
304 |
|
305 |
start_button.click(
|
306 |
fn=start,
|
|
|
289 |
with gr.Row():
|
290 |
prompt = gr.Markdown("")
|
291 |
with gr.Blocks():
|
292 |
+
with gr.Row():
|
293 |
+
with gr.Column() as c1:
|
294 |
+
image_1 = gr.Image(interactive=False)
|
295 |
+
image_1_button = gr.Button("Select 1").style(full_width=True)
|
296 |
+
with gr.Column() as c2:
|
297 |
+
image_2 = gr.Image(interactive=False)
|
298 |
+
image_2_button = gr.Button("Select 2").style(full_width=True)
|
299 |
+
with gr.Column() as c3:
|
300 |
+
image_3 = gr.Image(interactive=False)
|
301 |
+
image_3_button = gr.Button("Select 3").style(full_width=True)
|
302 |
+
with gr.Column() as c4:
|
303 |
+
image_4 = gr.Image(interactive=False)
|
304 |
+
image_4_button = gr.Button("Select 4").style(full_width=True)
|
305 |
|
306 |
start_button.click(
|
307 |
fn=start,
|