Irpan commited on
Commit
3493c42
·
1 Parent(s): 668fb3c
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -56,11 +56,19 @@ mms_synthesize = gr.Interface(
56
 
57
  tabbed_interface = gr.TabbedInterface(
58
  [mms_transcribe, mms_synthesize],
59
- ["Speech-To-Text", "Text-To-Speech"],
60
  )
61
 
62
  with gr.Blocks() as demo:
63
- gr.Markdown("Comparision of STT and TTS models for Uyghur language.")
 
 
 
 
 
 
 
 
 
64
  tabbed_interface.render()
65
 
66
  if __name__ == "__main__":
 
56
 
57
  tabbed_interface = gr.TabbedInterface(
58
  [mms_transcribe, mms_synthesize],
 
59
  )
60
 
61
  with gr.Blocks() as demo:
62
+ gr.Markdown(
63
+ """
64
+ <h1 style="text-align: center; font-size: 28px; color: #4A90E2;">
65
+ Uyghur Speech-To-Text (STT) and Text-To-Speech (TTS) Model Comparisons
66
+ </h1>
67
+ <p style="text-align: center; font-size: 16px; color: #555;">
68
+ Demo of fine-tuned Uyghur language speech models for transcribing and synthesizing speech.
69
+ </p>
70
+ """
71
+ )
72
  tabbed_interface.render()
73
 
74
  if __name__ == "__main__":