PierreHanna commited on
Commit
ae66c6e
·
verified ·
1 Parent(s): 788f567

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ outputs = [gr.Textbox(label="Track name 1"), gr.Audio(label="Track 1"),
87
  gr.Textbox(label="Track name 3"), gr.Audio(label="Track 3"),
88
  gr.Textbox(label="Track name 4"), gr.Audio(label="Track 4"),
89
  gr.Textbox(label="Track name 5"), gr.Audio(label="Track 5")]
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=False)
93
 
 
87
  gr.Textbox(label="Track name 3"), gr.Audio(label="Track 3"),
88
  gr.Textbox(label="Track name 4"), gr.Audio(label="Track 4"),
89
  gr.Textbox(label="Track name 5"), gr.Audio(label="Track 5")]
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