Update app.py
Browse files
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.
|
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 |
label="❗ Model Limitations",
|
98 |
-
lines=
|
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 |
|