lpw commited on
Commit
8eb7077
·
1 Parent(s): 15a9ca7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -14,11 +14,8 @@ pipe = SpeechToSpeechPipeline("facebook/xm_transformer_unity_hk-en")
14
 
15
  def call_model(audio, model):
16
  # pipe = SpeechToSpeechPipeline("facebook/xm_transformer_unity_hk-en")
17
- out_put = pipe(audio)
18
- print(len(out_put))
19
- print(out_put[1])
20
- print(out_put[2])
21
- return gr.Audio(out_put[1], out_put[0])
22
 
23
  def inference(audio, model):
24
  if model == "xm_transformer_s2ut_en-hk":
 
14
 
15
  def call_model(audio, model):
16
  # pipe = SpeechToSpeechPipeline("facebook/xm_transformer_unity_hk-en")
17
+ wav, sr, text = pipe(audio)
18
+ return gr.Audio(sr, wav)
 
 
 
19
 
20
  def inference(audio, model):
21
  if model == "xm_transformer_s2ut_en-hk":