DigiP-AI commited on
Commit
77c2286
·
verified ·
1 Parent(s): 44c6199

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -350,7 +350,7 @@ with gr.Blocks(theme=theme, css=css) as app:
350
 
351
  radio_input = gr.Radio(label="Upscale Levels", choices=[2, 4, 6, 8, 10], value=2)
352
 
353
- iface = gr.Interface(fn=upscale_image, inputs = [gr.Image(label="Input Image", interactive=True), radio_input], outputs = gr.Image(label="Upscaled Image"), format="png", title="Image Upscaler")
354
 
355
 
356
  app.launch(share=True)
 
350
 
351
  radio_input = gr.Radio(label="Upscale Levels", choices=[2, 4, 6, 8, 10], value=2)
352
 
353
+ iface = gr.Interface(fn=upscale_image, inputs = [gr.Image(label="Input Image", interactive=True), radio_input], outputs = gr.Image(label="Upscaled Image", format="png"), title="Image Upscaler")
354
 
355
 
356
  app.launch(share=True)