Spaces:
Running
on
Zero
Running
on
Zero
add demo launch
Browse files
app.py
CHANGED
@@ -5,8 +5,13 @@ with gr.Blocks() as demo:
|
|
5 |
with gr.Row():
|
6 |
with gr.Column():
|
7 |
input_image = gr.Image(type="pil", label="Input Image")
|
8 |
-
run_button = gr.Button("Upscale")
|
9 |
with gr.Column():
|
10 |
result = ImageSlider(
|
11 |
-
interactive=False,
|
|
|
|
|
|
|
12 |
)
|
|
|
|
|
|
5 |
with gr.Row():
|
6 |
with gr.Column():
|
7 |
input_image = gr.Image(type="pil", label="Input Image")
|
8 |
+
run_button = gr.Button("Upscale")
|
9 |
with gr.Column():
|
10 |
result = ImageSlider(
|
11 |
+
interactive=False,
|
12 |
+
label="Generated Image",
|
13 |
+
elem_id="result-image",
|
14 |
+
position=0.1,
|
15 |
)
|
16 |
+
|
17 |
+
demo.launch(share=True)
|