remove target text anotation

This commit is contained in:
刘鑫
2025-09-18 12:58:27 +08:00
parent e5bcb735f0
commit 11568f0776

3
app.py
View File

@@ -244,14 +244,13 @@ def create_demo_interface(demo: VoxCPMDemo):
text = gr.Textbox( text = gr.Textbox(
value="VoxCPM is an innovative end-to-end TTS model from ModelBest, designed to generate highly realistic speech.", value="VoxCPM is an innovative end-to-end TTS model from ModelBest, designed to generate highly realistic speech.",
label="Target Text", label="Target Text",
info="Default processing splits text on \\n into paragraphs; each is synthesized as a chunk and then concatenated into the final audio."
) )
with gr.Row(): with gr.Row():
DoNormalizeText = gr.Checkbox( DoNormalizeText = gr.Checkbox(
value=False, value=False,
label="Text Normalization", label="Text Normalization",
elem_id="chk_normalize", elem_id="chk_normalize",
info="We use WeTextPorcessing library to normalize the input text." info="We use wetext library to normalize the input text."
) )
audio_output = gr.Audio(label="Output Audio") audio_output = gr.Audio(label="Output Audio")