TheMaisk commited on
Commit
2cbbf97
·
1 Parent(s): 0f62cb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -39,12 +39,12 @@ article = "Inspired by <p><a href='https://github.com/facebookresearch/demucs' t
39
  # Gradio Interface
40
  demo = gr.Interface(
41
  fn=inference,
42
- inputs=gr.inputs.Audio(type="numpy", label="Input"),
43
  outputs=[
44
- gr.outputs.Audio(type="filepath", label="Vocals"),
45
- gr.outputs.Audio(type="filepath", label="Bass"),
46
- gr.outputs.Audio(type="filepath", label="Drums"),
47
- gr.outputs.Audio(type="filepath", label="Other")
48
  ],
49
  article=article,
50
  theme='syddharth/gray-minimal',
 
39
  # Gradio Interface
40
  demo = gr.Interface(
41
  fn=inference,
42
+ inputs=gr.Audio(type="numpy", label="Input"),
43
  outputs=[
44
+ gr.Audio(type="filepath", label="Vocals"),
45
+ gr.Audio(type="filepath", label="Bass"),
46
+ gr.Audio(type="filepath", label="Drums"),
47
+ gr.Audio(type="filepath", label="Other")
48
  ],
49
  article=article,
50
  theme='syddharth/gray-minimal',