OzzyGT HF staff commited on
Commit
66eaf5f
1 Parent(s): b77f7ba

add demo launch

Browse files
Files changed (1) hide show
  1. app.py +7 -2
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, label="Generated Image", elem_id="result-image", position=0.1
 
 
 
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)