Update app.py
Browse files
app.py
CHANGED
@@ -30,9 +30,7 @@ def inference(audio):
|
|
30 |
|
31 |
return files
|
32 |
|
33 |
-
|
34 |
-
description = "Music source separation. To get started, simply upload your audio."
|
35 |
-
article = "Inspired by Demucs:\n<p style='text-align: center'><a href='https://arxiv.org/abs/1911.13254' target='_blank'>Music Source Separation in the Waveform Domain</a> | <a href='https://github.com/facebookresearch/demucs' target='_blank'>Github Repo</a></p>"
|
36 |
|
37 |
demo = gr.Interface(
|
38 |
inference,
|
@@ -42,8 +40,8 @@ demo = gr.Interface(
|
|
42 |
gr.outputs.Audio(type = "filepath", label = "Drums"),
|
43 |
gr.outputs.Audio(type = "filepath", label = "Other")
|
44 |
],
|
45 |
-
title = title,
|
46 |
-
description = description,
|
47 |
article = article,
|
48 |
theme = 'nuttea/Softblue',
|
49 |
allow_flagging = "never"
|
|
|
30 |
|
31 |
return files
|
32 |
|
33 |
+
article = "Inspired by <p<a href='https://github.com/facebookresearch/demucs' target='_blank'>Demucs</a></p>\nCopyright © 2023 JP Madsen"
|
|
|
|
|
34 |
|
35 |
demo = gr.Interface(
|
36 |
inference,
|
|
|
40 |
gr.outputs.Audio(type = "filepath", label = "Drums"),
|
41 |
gr.outputs.Audio(type = "filepath", label = "Other")
|
42 |
],
|
43 |
+
#title = title,
|
44 |
+
#description = description,
|
45 |
article = article,
|
46 |
theme = 'nuttea/Softblue',
|
47 |
allow_flagging = "never"
|