Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,9 +11,11 @@ def inference(audio):
|
|
11 |
|
12 |
title = "음성 분리"
|
13 |
|
14 |
-
gr.Interface(
|
15 |
inference,
|
16 |
gr.Audio(type="numpy", label="Input"),
|
17 |
[gr.Audio(type="filepath", label="Vocals"),gr.Audio(type="filepath", label="No Vocals / Instrumental")],
|
18 |
title=title,
|
19 |
-
)
|
|
|
|
|
|
11 |
|
12 |
title = "음성 분리"
|
13 |
|
14 |
+
demo = gr.Interface(
|
15 |
inference,
|
16 |
gr.Audio(type="numpy", label="Input"),
|
17 |
[gr.Audio(type="filepath", label="Vocals"),gr.Audio(type="filepath", label="No Vocals / Instrumental")],
|
18 |
title=title,
|
19 |
+
)
|
20 |
+
demo.queue(max_size=1)
|
21 |
+
demo.launch(debug=True)
|