reedmayhew commited on
Commit
e2d6adc
1 Parent(s): 92c37e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -65,10 +65,10 @@ def gradio_interface(image, save_as_jpg):
65
  interface = gr.Interface(
66
  fn=gradio_interface,
67
  inputs=[
68
- gr.inputs.Image(type="pil", label="Upload Image"),
69
- gr.inputs.Checkbox(default=True, label="Save as JPEG"),
70
  ],
71
- outputs=gr.outputs.File(label="Download Upscaled Image"),
72
  title="Image Upscaler",
73
  description="Upload an image, upscale it, and download the new image.",
74
  )
 
65
  interface = gr.Interface(
66
  fn=gradio_interface,
67
  inputs=[
68
+ gr.Image(type="pil", label="Upload Image"),
69
+ gr.Checkbox(default=True, label="Save as JPEG"),
70
  ],
71
+ outputs=gr.File(label="Download Upscaled Image"),
72
  title="Image Upscaler",
73
  description="Upload an image, upscale it, and download the new image.",
74
  )