Commit
·
b5f340b
1
Parent(s):
54ad213
Update app.py
Browse files
app.py
CHANGED
|
@@ -292,16 +292,20 @@ with gr.Blocks() as demo:
|
|
| 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.Row():
|
| 300 |
with gr.Column() as c3:
|
| 301 |
image_3 = gr.Image(interactive=False)
|
|
|
|
| 302 |
image_3_button = gr.Button("Select 3").style(full_width=True)
|
| 303 |
with gr.Column() as c4:
|
| 304 |
image_4 = gr.Image(interactive=False)
|
|
|
|
| 305 |
image_4_button = gr.Button("Select 4").style(full_width=True)
|
| 306 |
|
| 307 |
start_button.click(
|
|
|
|
| 292 |
with gr.Row():
|
| 293 |
with gr.Column() as c1:
|
| 294 |
image_1 = gr.Image(interactive=False)
|
| 295 |
+
image_1.style(height=256, width=256)
|
| 296 |
image_1_button = gr.Button("Select 1").style(full_width=True)
|
| 297 |
with gr.Column() as c2:
|
| 298 |
image_2 = gr.Image(interactive=False)
|
| 299 |
+
image_2.style(height=256, width=256)
|
| 300 |
image_2_button = gr.Button("Select 2").style(full_width=True)
|
| 301 |
with gr.Row():
|
| 302 |
with gr.Column() as c3:
|
| 303 |
image_3 = gr.Image(interactive=False)
|
| 304 |
+
image_3.style(height=256, width=256)
|
| 305 |
image_3_button = gr.Button("Select 3").style(full_width=True)
|
| 306 |
with gr.Column() as c4:
|
| 307 |
image_4 = gr.Image(interactive=False)
|
| 308 |
+
image_4.style(height=256, width=256)
|
| 309 |
image_4_button = gr.Button("Select 4").style(full_width=True)
|
| 310 |
|
| 311 |
start_button.click(
|