Spaces:
Runtime error
Runtime error
Fix height
Browse files
app.py
CHANGED
@@ -64,10 +64,14 @@ with gr.Blocks() as demo:
|
|
64 |
with gr.Column():
|
65 |
image = gr.Image(
|
66 |
label="Image",
|
67 |
-
type="filepath"
|
|
|
68 |
)
|
69 |
with gr.Column():
|
70 |
-
result_image = gr.Image(
|
|
|
|
|
|
|
71 |
|
72 |
submit_btn = gr.Button("Submit")
|
73 |
|
|
|
64 |
with gr.Column():
|
65 |
image = gr.Image(
|
66 |
label="Image",
|
67 |
+
type="filepath",
|
68 |
+
height=512
|
69 |
)
|
70 |
with gr.Column():
|
71 |
+
result_image = gr.Image(
|
72 |
+
label="Output",
|
73 |
+
height=512
|
74 |
+
)
|
75 |
|
76 |
submit_btn = gr.Button("Submit")
|
77 |
|