Den4ikAI commited on
Commit
1cb5af8
·
verified ·
1 Parent(s): 384a28c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -298,10 +298,9 @@ def synthesize(
298
  print("Warning during cuda cleanup:", e)
299
 
300
  # ----------------- Gradio UI (как у вас) -----------------
301
- with gr.Blocks(title="ESpeech-TTS (ZeroGPU-ready)") as app:
302
  gr.Markdown("# ESpeech-TTS")
303
- gr.Markdown("Text-to-Speech synthesis system with multiple model variants (models auto-download from HF Hub).")
304
- gr.Markdown("💡 Tip: Leave Reference Text empty to transcribe with ASR. On ZeroGPU the heavy work runs on GPU only during synthesize call.")
305
 
306
  model_choice = gr.Dropdown(
307
  choices=list(MODEL_REPOS.keys()),
 
298
  print("Warning during cuda cleanup:", e)
299
 
300
  # ----------------- Gradio UI (как у вас) -----------------
301
+ with gr.Blocks(title="ESpeech-TTS") as app:
302
  gr.Markdown("# ESpeech-TTS")
303
+ gr.Markdown("See more on https://huggingface.co/ESpeech")
 
304
 
305
  model_choice = gr.Dropdown(
306
  choices=list(MODEL_REPOS.keys()),