Spaces:
Runtime error
Runtime error
Commit
Β·
324b41e
1
Parent(s):
60a2c81
Update app.py
Browse files
app.py
CHANGED
|
@@ -34,32 +34,32 @@ with gr.Blocks() as app:
|
|
| 34 |
with gr.Row():
|
| 35 |
out1 = gr.Image(value="out1.png", interactive=False, shape=(128, 128), label='Oil Painting')
|
| 36 |
with gr.Row():
|
| 37 |
-
submit1 = gr.Button("
|
| 38 |
|
| 39 |
with gr.Column():
|
| 40 |
with gr.Row():
|
| 41 |
out2 = gr.Image(value="out2.png", interactive=False, shape=(128, 128), label='Low Poly HD Style')
|
| 42 |
with gr.Row():
|
| 43 |
-
submit2 = gr.Button("
|
| 44 |
|
| 45 |
with gr.Column():
|
| 46 |
with gr.Row():
|
| 47 |
out3 = gr.Image(value="out3.png", interactive=False, shape=(128, 128), label='Matrix style')
|
| 48 |
with gr.Row():
|
| 49 |
-
submit3 = gr.Button("
|
| 50 |
|
| 51 |
|
| 52 |
with gr.Column():
|
| 53 |
with gr.Row():
|
| 54 |
out4 = gr.Image(value="out4.png", interactive=False, shape=(128, 128), label='Dreamy Painting')
|
| 55 |
with gr.Row():
|
| 56 |
-
submit4 = gr.Button("
|
| 57 |
|
| 58 |
with gr.Column():
|
| 59 |
with gr.Row():
|
| 60 |
out5 = gr.Image(value="out5.png", interactive=False, shape=(128, 128), label='Depth Map Style')
|
| 61 |
with gr.Row():
|
| 62 |
-
submit5 = gr.Button("
|
| 63 |
|
| 64 |
|
| 65 |
with gr.Row(visible=True):
|
|
|
|
| 34 |
with gr.Row():
|
| 35 |
out1 = gr.Image(value="out1.png", interactive=False, shape=(128, 128), label='Oil Painting')
|
| 36 |
with gr.Row():
|
| 37 |
+
submit1 = gr.Button("Submit", variant='primary')
|
| 38 |
|
| 39 |
with gr.Column():
|
| 40 |
with gr.Row():
|
| 41 |
out2 = gr.Image(value="out2.png", interactive=False, shape=(128, 128), label='Low Poly HD Style')
|
| 42 |
with gr.Row():
|
| 43 |
+
submit2 = gr.Button("Submit", variant='primary')
|
| 44 |
|
| 45 |
with gr.Column():
|
| 46 |
with gr.Row():
|
| 47 |
out3 = gr.Image(value="out3.png", interactive=False, shape=(128, 128), label='Matrix style')
|
| 48 |
with gr.Row():
|
| 49 |
+
submit3 = gr.Button("Submit", variant='primary')
|
| 50 |
|
| 51 |
|
| 52 |
with gr.Column():
|
| 53 |
with gr.Row():
|
| 54 |
out4 = gr.Image(value="out4.png", interactive=False, shape=(128, 128), label='Dreamy Painting')
|
| 55 |
with gr.Row():
|
| 56 |
+
submit4 = gr.Button("Submit", variant='primary')
|
| 57 |
|
| 58 |
with gr.Column():
|
| 59 |
with gr.Row():
|
| 60 |
out5 = gr.Image(value="out5.png", interactive=False, shape=(128, 128), label='Depth Map Style')
|
| 61 |
with gr.Row():
|
| 62 |
+
submit5 = gr.Button("Submit", variant='primary')
|
| 63 |
|
| 64 |
|
| 65 |
with gr.Row(visible=True):
|