whooray commited on
Commit
217b172
·
verified ·
1 Parent(s): a0fef82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
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
- ).launch(enable_queue=True, debug=True)
 
 
 
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)