Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -89,7 +89,10 @@ with gr.Blocks() as demo:
|
|
89 |
height = 768 + 128,
|
90 |
label = "Style Image gallery (click to use)")
|
91 |
with gr.Column():
|
92 |
-
super_resolution_type = gr.Radio(["base", "anime", "none"], type="value", default="base", label="choose Real-ESRGAN model type used to super resolution the Image Transformed")
|
|
|
|
|
|
|
93 |
style_reference_input_image = gr.Image(
|
94 |
label = "Style Image (you can upload yourself or click from left gallery)",
|
95 |
#width = 512,
|
|
|
89 |
height = 768 + 128,
|
90 |
label = "Style Image gallery (click to use)")
|
91 |
with gr.Column():
|
92 |
+
#super_resolution_type = gr.Radio(["base", "anime", "none"], type="value", default="base", label="choose Real-ESRGAN model type used to super resolution the Image Transformed")
|
93 |
+
super_resolution_type = gr.Radio(choices = ["base", "anime", "none"],
|
94 |
+
value="base", label="choose Real-ESRGAN model type used to super resolution the Image Transformed",
|
95 |
+
interactive = True)
|
96 |
style_reference_input_image = gr.Image(
|
97 |
label = "Style Image (you can upload yourself or click from left gallery)",
|
98 |
#width = 512,
|