Update app.py
Browse files
app.py
CHANGED
@@ -166,15 +166,15 @@ def ui_full(launch_kwargs):
|
|
166 |
submit.click(predict_full, inputs=[model, text, melody, duration, topk, topp, temperature, cfg_coef], outputs=[output])
|
167 |
gr.Examples(
|
168 |
fn=predict_full,
|
169 |
-
|
170 |
[
|
171 |
"An 80s driving pop song with heavy drums and synth pads in the background",
|
172 |
-
"./
|
173 |
"melody"
|
174 |
],
|
175 |
[
|
176 |
"A cheerful country song with acoustic guitars",
|
177 |
-
"./
|
178 |
"melody"
|
179 |
],
|
180 |
[
|
@@ -184,7 +184,7 @@ def ui_full(launch_kwargs):
|
|
184 |
],
|
185 |
[
|
186 |
"a light and cheerly EDM track, with syncopated drums, aery pads, and strong emotions",
|
187 |
-
"./
|
188 |
"melody"
|
189 |
],
|
190 |
[
|
|
|
166 |
submit.click(predict_full, inputs=[model, text, melody, duration, topk, topp, temperature, cfg_coef], outputs=[output])
|
167 |
gr.Examples(
|
168 |
fn=predict_full,
|
169 |
+
examples=[
|
170 |
[
|
171 |
"An 80s driving pop song with heavy drums and synth pads in the background",
|
172 |
+
"./bach.mp3",
|
173 |
"melody"
|
174 |
],
|
175 |
[
|
176 |
"A cheerful country song with acoustic guitars",
|
177 |
+
"./bolero_ravel.mp3",
|
178 |
"melody"
|
179 |
],
|
180 |
[
|
|
|
184 |
],
|
185 |
[
|
186 |
"a light and cheerly EDM track, with syncopated drums, aery pads, and strong emotions",
|
187 |
+
"./bach.mp3",
|
188 |
"melody"
|
189 |
],
|
190 |
[
|