Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,5 +9,5 @@ def upscale_image(input_image, radio_input):
|
|
9 |
|
10 |
radio_input = gr.Radio(label="Upscale Levels", choices=[2, 4, 6, 8, 10], value=2)
|
11 |
|
12 |
-
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", theme="Nymbo/
|
13 |
iface.launch(show_api=False)
|
|
|
9 |
|
10 |
radio_input = gr.Radio(label="Upscale Levels", choices=[2, 4, 6, 8, 10], value=2)
|
11 |
|
12 |
+
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", theme="Nymbo/Nymbo_Theme")
|
13 |
iface.launch(show_api=False)
|