AlGe commited on
Commit
51524a2
·
verified ·
1 Parent(s): 5f87521

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ def enhance_image(input_image):
11
  # Create the Gradio interface
12
  interface = gr.Interface(
13
  fn=enhance_image,
14
- inputs=gr.inputs.Image(type="pil", label="Input Image"),
15
- outputs=gr.outputs.Image(type="pil", label="Enhanced Image"),
16
  title="Enhance This HiDiffusion SDXL",
17
  description="Upload an image to enhance it using HiDiffusion SDXL."
18
  )
 
11
  # Create the Gradio interface
12
  interface = gr.Interface(
13
  fn=enhance_image,
14
+ inputs=gr.Image(type="pil", label="Input Image"),
15
+ outputs=gr.Image(type="pil", label="Enhanced Image"),
16
  title="Enhance This HiDiffusion SDXL",
17
  description="Upload an image to enhance it using HiDiffusion SDXL."
18
  )