tianhk commited on
Commit
a58ea44
·
1 Parent(s): 52219b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,7 +15,7 @@ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.093
15
 
16
  gr.Interface(
17
  fn = inference,
18
- inputs = gr.inputs.File(type="file", label="Input"),
19
- outputs = [gr.outputs.Audio(type="file", label="Output")],
20
  article = article,
21
  ).launch()
 
15
 
16
  gr.Interface(
17
  fn = inference,
18
+ inputs = gr.File(type="file", label="Input"),
19
+ outputs = [gr.Audio(type="file", label="Output")],
20
  article = article,
21
  ).launch()