ehristoforu commited on
Commit
bc4fe30
1 Parent(s): 9f23103

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ In this space you can increase the size and quality of your images.
13
  ⚠️ Enlarging the image and "Upscale Level" do not always improve image quality!
14
  """
15
 
16
- radio_input = gr.Radio(label="Upscale Levels", choices=[2, 4, 6, 8], value=2)
17
 
18
  iface = gr.Interface(fn=upscale_image, inputs = [gr.Image(label="Input Image", interactive=True), radio_input], outputs = gr.Image(label="Upscaled Image"), title="Image Upscaler", description=DESCRIPTION)
19
  iface.launch(show_api=False)
 
13
  ⚠️ Enlarging the image and "Upscale Level" do not always improve image quality!
14
  """
15
 
16
+ radio_input = gr.Radio(label="Upscale Levels", choices=[2, 4, 6, 8, 10], value=2)
17
 
18
  iface = gr.Interface(fn=upscale_image, inputs = [gr.Image(label="Input Image", interactive=True), radio_input], outputs = gr.Image(label="Upscaled Image"), title="Image Upscaler", description=DESCRIPTION)
19
  iface.launch(show_api=False)