Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
| 91 |
|
| 92 |
-
demo1.launch(debug=
|
| 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 |
|