hynt commited on
Commit
dc433b8
·
verified ·
1 Parent(s): 1116d9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -90,12 +90,13 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
90
  output_spectrogram = gr.Image(label="📊 Spectrogram")
91
 
92
  model_limitations = gr.Textbox(
93
- value="""1. This model may not perform well with numerical characters, dates, special characters, etc. => A text normalization module is needed.
94
- 2. The rhythm of some generated audios may be inconsistent or choppy => It is recommended to select clearly pronounced sample audios with minimal pauses for better synthesis quality.
95
  3. Default, reference audio text uses the pho-whisper-medium model, which may not always accurately recognize Vietnamese, resulting in poor voice synthesis quality.
96
- 4. Inference with overly long paragraphs may produce poor results.""",
 
97
  label="❗ Model Limitations",
98
- lines=4,
99
  interactive=False
100
  )
101
 
 
90
  output_spectrogram = gr.Image(label="📊 Spectrogram")
91
 
92
  model_limitations = gr.Textbox(
93
+ value="""1. This model may not perform well with numerical characters, dates, special characters, etc.
94
+ 2. The rhythm of some generated audios may be inconsistent or choppy.
95
  3. Default, reference audio text uses the pho-whisper-medium model, which may not always accurately recognize Vietnamese, resulting in poor voice synthesis quality.
96
+ 4. Inference with overly long paragraphs may produce poor results.
97
+ 5. This demo uses a for loop to generate audio for each sentence sequentially in long paragraphs, so the speed may be slow""",
98
  label="❗ Model Limitations",
99
+ lines=5,
100
  interactive=False
101
  )
102