hynt commited on
Commit
0779337
·
verified ·
1 Parent(s): b5669e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -71,7 +71,7 @@ def infer_tts(ref_audio_orig: str, gen_text: str, speed: float = 1.0, request: g
71
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
72
  gr.Markdown("""
73
  # 🎤 F5-TTS: Vietnamese Text-to-Speech Synthesis.
74
- # The model was trained for 500.000 steps with approximately 150 hours of data on an RTX 3090 GPU.
75
  Enter text and upload a sample voice to generate natural speech.
76
  """)
77
 
@@ -90,10 +90,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
90
  value="""1. This model may not perform well with numerical characters, dates, special characters, etc. => A text normalization module is needed.
91
  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.
92
  3. Default, reference audio text uses the whisper-large-v3-turbo model, which may not always accurately recognize Vietnamese, resulting in poor voice synthesis quality.
93
- 4. Checkpoint is stopped at step 500.000, trained with 150 hours of public data => Voice cloning for non-native voices may not be perfectly accurate.
94
- 5. Inference with overly long paragraphs may produce poor results.""",
95
  label="❗ Model Limitations",
96
- lines=5,
97
  interactive=False
98
  )
99
 
 
71
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
72
  gr.Markdown("""
73
  # 🎤 F5-TTS: Vietnamese Text-to-Speech Synthesis.
74
+ # The model was trained with approximately 1000 hours of data on an RTX 3090 GPU.
75
  Enter text and upload a sample voice to generate natural speech.
76
  """)
77
 
 
90
  value="""1. This model may not perform well with numerical characters, dates, special characters, etc. => A text normalization module is needed.
91
  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.
92
  3. Default, reference audio text uses the whisper-large-v3-turbo model, which may not always accurately recognize Vietnamese, resulting in poor voice synthesis quality.
93
+ 4. Inference with overly long paragraphs may produce poor results.""",
 
94
  label="❗ Model Limitations",
95
+ lines=4,
96
  interactive=False
97
  )
98