Spaces:
Running
Running
Eddycrack864
commited on
Commit
β’
70da67e
1
Parent(s):
9cd0983
Upload app.py
Browse files
app.py
CHANGED
@@ -420,14 +420,16 @@ with gr.Blocks(title="π΅ UVR5 UI π΅") as app:
|
|
420 |
vrarch_tta = gr.Checkbox(
|
421 |
label = "TTA",
|
422 |
info = "Enable Test-Time-Augmentation; slow but improves quality.",
|
423 |
-
value =
|
424 |
-
|
|
|
425 |
)
|
426 |
vrarch_high_end_process = gr.Checkbox(
|
427 |
label = "High End Process",
|
428 |
info = "Mirror the missing frequency range of the output.",
|
429 |
-
value =
|
430 |
-
|
|
|
431 |
)
|
432 |
with gr.Row():
|
433 |
vrarch_audio = gr.Audio(
|
|
|
420 |
vrarch_tta = gr.Checkbox(
|
421 |
label = "TTA",
|
422 |
info = "Enable Test-Time-Augmentation; slow but improves quality.",
|
423 |
+
value = True,
|
424 |
+
visible = True,
|
425 |
+
interactive = True,
|
426 |
)
|
427 |
vrarch_high_end_process = gr.Checkbox(
|
428 |
label = "High End Process",
|
429 |
info = "Mirror the missing frequency range of the output.",
|
430 |
+
value = False,
|
431 |
+
visible = True,
|
432 |
+
interactive = True,
|
433 |
)
|
434 |
with gr.Row():
|
435 |
vrarch_audio = gr.Audio(
|