amirgame197 commited on
Commit
ce3b6b4
·
verified ·
1 Parent(s): 658614d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,9 +43,9 @@ def gradio_interface(audio_file, stem_count):
43
  return [gr.Audio(file_path, label=description) for description, file_path in separated_audios]
44
 
45
  iface = gr.Interface(
46
- fn=seperate_audio,
47
  inputs=[gr.Audio(type="filepath"), gr.Radio([2, 4, 5])],
48
- outputs=[gr.Text(label="Output")],
49
  )
50
 
51
  iface.launch()
 
43
  return [gr.Audio(file_path, label=description) for description, file_path in separated_audios]
44
 
45
  iface = gr.Interface(
46
+ fn=separate_audio,
47
  inputs=[gr.Audio(type="filepath"), gr.Radio([2, 4, 5])],
48
+ outputs="text",
49
  )
50
 
51
  iface.launch()