hackshaw commited on
Commit
9e12ed4
·
1 Parent(s): 88f8c70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -28,5 +28,10 @@ def process_img(input_image: Image.Image):
28
 
29
  return output_image
30
 
31
- iface = gr.Interface(fn=process_img, inputs=gr.inputs.Image(type="pil"), outputs="image")
 
 
 
 
 
32
  iface.launch()
 
28
 
29
  return output_image
30
 
31
+ iface = gr.Interface(
32
+ fn=process_img,
33
+ inputs=gr.inputs.Image(type="pil"),
34
+ outputs="image",
35
+ title="SwinIR upscaling"
36
+ )
37
  iface.launch()