Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -82,11 +82,11 @@ poc_examples = [
|
|
| 82 |
["90 eurodance beat","en"],
|
| 83 |
]
|
| 84 |
|
| 85 |
-
outputs = [gr.Textbox(label="Track name 1"), gr.Audio(label="Track 1"),
|
| 86 |
-
gr.Textbox(label="Track name 2"), gr.Audio(label="Track 2"),
|
| 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)
|
|
|
|
| 82 |
["90 eurodance beat","en"],
|
| 83 |
]
|
| 84 |
|
| 85 |
+
outputs = [gr.Textbox(label="Track name 1"), gr.Audio(label="Track 1", show_label=False),
|
| 86 |
+
gr.Textbox(label="Track name 2"), gr.Audio(label="Track 2", show_label=False),
|
| 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)
|