Update tabs/inference/inference.py
Browse files- tabs/inference/inference.py +21 -20
tabs/inference/inference.py
CHANGED
@@ -515,26 +515,27 @@ def inference_tab():
|
|
515 |
value="Refresh",
|
516 |
visible=False,
|
517 |
)
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
|
|
538 |
reverb = gr.Checkbox(
|
539 |
label=i18n("Reverb"),
|
540 |
info=i18n("Apply reverb to the audio."),
|
|
|
515 |
value="Refresh",
|
516 |
visible=False,
|
517 |
)
|
518 |
+
with gr.Row():
|
519 |
+
formant_qfrency = gr.Slider(
|
520 |
+
value=1.0,
|
521 |
+
info=i18n("Default value is 1.0"),
|
522 |
+
label=i18n("Quefrency for formant shifting"),
|
523 |
+
minimum=0.0,
|
524 |
+
maximum=16.0,
|
525 |
+
step=0.1,
|
526 |
+
visible=False,
|
527 |
+
interactive=True,
|
528 |
+
)
|
529 |
+
formant_timbre = gr.Slider(
|
530 |
+
value=1.0,
|
531 |
+
info=i18n("Default value is 1.0"),
|
532 |
+
label=i18n("Timbre for formant shifting"),
|
533 |
+
minimum=0.0,
|
534 |
+
maximum=16.0,
|
535 |
+
step=0.1,
|
536 |
+
visible=False,
|
537 |
+
interactive=True,
|
538 |
+
)
|
539 |
reverb = gr.Checkbox(
|
540 |
label=i18n("Reverb"),
|
541 |
info=i18n("Apply reverb to the audio."),
|