mrfakename commited on
Commit
c246699
·
1 Parent(s): e23c02d
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -219,12 +219,6 @@ with gr.Blocks(title="DMOSpeech 2 - Zero-Shot TTS") as demo:
219
  label="🔊 Generated Speech", type="filepath", autoplay=True
220
  )
221
 
222
- status = gr.Textbox(label="Status", interactive=False)
223
-
224
- metrics = gr.Textbox(label="Performance Metrics", interactive=False)
225
-
226
- info = gr.Textbox(label="Generation Info", interactive=False)
227
-
228
  # Tips
229
  gr.Markdown(
230
  """
@@ -257,7 +251,7 @@ with gr.Blocks(title="DMOSpeech 2 - Zero-Shot TTS") as demo:
257
  custom_student_start_step,
258
  verbose,
259
  ],
260
- outputs=[output_audio, status, metrics, info],
261
  )
262
 
263
  mode.change(lambda x: gr.update(visible=x == "Custom"), inputs=[mode], outputs=[custom_settings])
 
219
  label="🔊 Generated Speech", type="filepath", autoplay=True
220
  )
221
 
 
 
 
 
 
 
222
  # Tips
223
  gr.Markdown(
224
  """
 
251
  custom_student_start_step,
252
  verbose,
253
  ],
254
+ outputs=[output_audio],
255
  )
256
 
257
  mode.change(lambda x: gr.update(visible=x == "Custom"), inputs=[mode], outputs=[custom_settings])