PierreHanna commited on
Commit
c337693
·
verified ·
1 Parent(s): 6274d6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -87,7 +87,7 @@ outputs = [gr.Textbox(label="Track name 1"), gr.Audio(label="Track 1", show_labe
87
  gr.Textbox(label="Track name 3"), gr.Audio(label="Track 3", show_label=False),
88
  gr.Textbox(label="Track name 4"), gr.Audio(label="Track 4", show_label=False),
89
  gr.Textbox(label="Track name 5"), gr.Audio(label="Track 5", show_label=False)]
90
- demo1 = gr.Interface(fn=process, inputs=inputs, outputs=outputs, examples=poc_examples, cache_examples=True, examples_per_page=20)
91
 
92
- demo1.launch(debug=False)
93
 
 
87
  gr.Textbox(label="Track name 3"), gr.Audio(label="Track 3", show_label=False),
88
  gr.Textbox(label="Track name 4"), gr.Audio(label="Track 4", show_label=False),
89
  gr.Textbox(label="Track name 5"), gr.Audio(label="Track 5", show_label=False)]
90
+ demo1 = gr.Interface(fn=process, inputs=inputs, outputs=outputs, examples=poc_examples, cache_examples=False, examples_per_page=20)
91
 
92
+ demo1.launch(debug=True)
93