From a1eb96e6c1adff6a4c7a1596caedcf229e33822a Mon Sep 17 00:00:00 2001 From: mrq Date: Tue, 25 Mar 2025 18:56:13 -0500 Subject: [PATCH] re-enable this (nothing could go wrong) --- vall_e/webui.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vall_e/webui.py b/vall_e/webui.py index 8b730e8..f2694f6 100644 --- a/vall_e/webui.py +++ b/vall_e/webui.py @@ -477,11 +477,9 @@ with ui: with gr.Row(): layout["inference_tts"]["inputs"]["split-text-by"] = gr.Dropdown(choices=["sentences", "lines"], label="Text Delimiter", info="How to split the text into utterances.", value="sentences") layout["inference_tts"]["inputs"]["context-history"] = gr.Slider(value=0, minimum=0, maximum=4, step=1, label="(Rolling) Context History", info="How many prior lines to serve as the context/prefix (0 to disable).") - """ with gr.Row(): layout["inference_tts"]["inputs"]["no-phonemize"] = gr.Checkbox(label="No Phonemize", info="Use raw text rather than phonemize the text as the input prompt.") layout["inference_tts"]["inputs"]["play"] = gr.Checkbox(label="Auto Play", info="Auto play on generation (using sounddevice).") - """ with gr.Tab("Sampler Settings"): with gr.Row(): layout["inference_tts"]["inputs"]["ar-temperature"] = gr.Slider(value=1.0, minimum=0.0, maximum=1.5, step=0.05, label="Temperature (AR/NAR-len)", info="Adjusts the probabilities in the AR/NAR-len. (0 to greedy* sample)")