add examples
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ description = "Gradio demo for MIDI-DDSP: Detailed Control of Musical Performanc
|
|
13 |
|
14 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.09312' target='_blank'>MIDI-DDSP: Detailed Control of Musical Performance via Hierarchical Modeling</a> | <a href='https://github.com/magenta/midi-ddsp' target='_blank'>Github Repo</a></p>"
|
15 |
|
16 |
-
|
17 |
|
18 |
gr.Interface(
|
19 |
inference,
|
@@ -22,5 +22,5 @@ gr.Interface(
|
|
22 |
title=title,
|
23 |
description=description,
|
24 |
article=article,
|
25 |
-
|
26 |
).launch(debug=True, enable_queue=True)
|
|
|
13 |
|
14 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.09312' target='_blank'>MIDI-DDSP: Detailed Control of Musical Performance via Hierarchical Modeling</a> | <a href='https://github.com/magenta/midi-ddsp' target='_blank'>Github Repo</a></p>"
|
15 |
|
16 |
+
examples=['ode_to_joy.mid']
|
17 |
|
18 |
gr.Interface(
|
19 |
inference,
|
|
|
22 |
title=title,
|
23 |
description=description,
|
24 |
article=article,
|
25 |
+
examples=examples
|
26 |
).launch(debug=True, enable_queue=True)
|