Irpan commited on
Commit
501d3b8
·
1 Parent(s): 3493c42
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -23,7 +23,6 @@ mms_transcribe = gr.Interface(
23
  gr.Textbox(label="Uyghur Latin Transcription"),
24
  ],
25
  examples=util.asr_examples,
26
- title="Speech-To-Text",
27
  description=(
28
  "Transcribe Uyghur speech audio from a microphone or input file."
29
  ),
@@ -46,7 +45,6 @@ mms_synthesize = gr.Interface(
46
  gr.Audio(label="Generated Audio"),
47
  ],
48
  examples=util.tts_examples,
49
- title="Text-To-Speech",
50
  description=(
51
  "Generate audio from input Uyghur text."
52
  ),
@@ -56,6 +54,7 @@ mms_synthesize = gr.Interface(
56
 
57
  tabbed_interface = gr.TabbedInterface(
58
  [mms_transcribe, mms_synthesize],
 
59
  )
60
 
61
  with gr.Blocks() as demo:
 
23
  gr.Textbox(label="Uyghur Latin Transcription"),
24
  ],
25
  examples=util.asr_examples,
 
26
  description=(
27
  "Transcribe Uyghur speech audio from a microphone or input file."
28
  ),
 
45
  gr.Audio(label="Generated Audio"),
46
  ],
47
  examples=util.tts_examples,
 
48
  description=(
49
  "Generate audio from input Uyghur text."
50
  ),
 
54
 
55
  tabbed_interface = gr.TabbedInterface(
56
  [mms_transcribe, mms_synthesize],
57
+ ["Speech-To-Text", "Text-To-Speech"],
58
  )
59
 
60
  with gr.Blocks() as demo: