AlGe commited on
Commit
d4ef91a
·
verified ·
1 Parent(s): 2eaf831

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,8 +26,8 @@ def enhance_image(input_image):
26
  # Create the Gradio interface
27
  interface = gr.Interface(
28
  fn=enhance_image,
29
- inputs=gr.inputs.Image(type="pil", label="Input Image"),
30
- outputs=gr.outputs.Image(type="pil", label="Enhanced Image"),
31
  title="Enhance This HiDiffusion SDXL",
32
  description="Upload an image to enhance it using HiDiffusion SDXL."
33
  )
 
26
  # Create the Gradio interface
27
  interface = gr.Interface(
28
  fn=enhance_image,
29
+ inputs=gr.Image(type="pil", label="Input Image"),
30
+ outputs=gr.Image(type="pil", label="Enhanced Image"),
31
  title="Enhance This HiDiffusion SDXL",
32
  description="Upload an image to enhance it using HiDiffusion SDXL."
33
  )