Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -361,8 +361,38 @@ with gr.Blocks() as demo:
|
|
| 361 |
# Examples updated to only include text inputs
|
| 362 |
gr.Examples(
|
| 363 |
examples=[
|
| 364 |
-
|
| 365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 366 |
"""[verse]
|
| 367 |
Staring at the sunset, colors paint the sky
|
| 368 |
Thoughts of you keep swirling, can't deny
|
|
@@ -385,38 +415,7 @@ But they don't feel this love the way we do
|
|
| 385 |
My heart beats only for you, can't you see?
|
| 386 |
I won't let you slip away from me
|
| 387 |
"""
|
| 388 |
-
]
|
| 389 |
-
],
|
| 390 |
-
inputs=[genre_txt, lyrics_txt],
|
| 391 |
-
outputs=[music_out, vocal_out, instrumental_out],
|
| 392 |
-
cache_examples=True,
|
| 393 |
-
cache_mode="eager",
|
| 394 |
-
fn=generate_music
|
| 395 |
-
)
|
| 396 |
-
|
| 397 |
-
gr.Examples(
|
| 398 |
-
examples=[
|
| 399 |
-
["rap piano street tough piercing vocal hip-hop synthesizer clear vocal male",
|
| 400 |
-
"""[verse]
|
| 401 |
-
Woke up in the morning, sun is shining bright
|
| 402 |
-
Chasing all my dreams, gotta get my mind right
|
| 403 |
-
City lights are fading, but my vision's clear
|
| 404 |
-
Got my team beside me, no room for fear.
|
| 405 |
-
|
| 406 |
-
[chorus]
|
| 407 |
-
Walking through the streets, beats inside my head
|
| 408 |
-
Every step I take, closer to the bread
|
| 409 |
-
This is my life, and I'm aiming for the top
|
| 410 |
-
Never gonna quit, no, I'm never gonna stop
|
| 411 |
-
Through the highs and lows, I'mma keep it real
|
| 412 |
-
Living out my dreams with this mic and a deal
|
| 413 |
-
|
| 414 |
-
[verse]
|
| 415 |
-
Late nights grinding, writing down these rhymes
|
| 416 |
-
Clock is ticking fast, can't afford to waste time
|
| 417 |
-
Haters gonna hate, but I brush it off
|
| 418 |
-
Turn the negativity into something strong
|
| 419 |
-
Mama working hard, wanna make her proud"""],
|
| 420 |
[
|
| 421 |
"Bass Metalcore Thrash Metal Furious bright vocal male Angry aggressive vocal Guitar",
|
| 422 |
"""[verse]
|
|
|
|
| 361 |
# Examples updated to only include text inputs
|
| 362 |
gr.Examples(
|
| 363 |
examples=[
|
| 364 |
+
["rap piano street tough piercing vocal hip-hop synthesizer clear vocal male",
|
| 365 |
+
"""[verse]
|
| 366 |
+
Woke up in the morning, sun is shining bright
|
| 367 |
+
Chasing all my dreams, gotta get my mind right
|
| 368 |
+
City lights are fading, but my vision's clear
|
| 369 |
+
Got my team beside me, no room for fear.
|
| 370 |
+
|
| 371 |
+
[chorus]
|
| 372 |
+
Walking through the streets, beats inside my head
|
| 373 |
+
Every step I take, closer to the bread
|
| 374 |
+
This is my life, and I'm aiming for the top
|
| 375 |
+
Never gonna quit, no, I'm never gonna stop
|
| 376 |
+
Through the highs and lows, I'mma keep it real
|
| 377 |
+
Living out my dreams with this mic and a deal
|
| 378 |
+
|
| 379 |
+
[verse]
|
| 380 |
+
Late nights grinding, writing down these rhymes
|
| 381 |
+
Clock is ticking fast, can't afford to waste time
|
| 382 |
+
Haters gonna hate, but I brush it off
|
| 383 |
+
Turn the negativity into something strong
|
| 384 |
+
Mama working hard, wanna make her proud"""]
|
| 385 |
+
],
|
| 386 |
+
inputs=[genre_txt, lyrics_txt],
|
| 387 |
+
outputs=[music_out, vocal_out, instrumental_out],
|
| 388 |
+
cache_examples=True,
|
| 389 |
+
cache_mode="eager",
|
| 390 |
+
fn=generate_music
|
| 391 |
+
)
|
| 392 |
+
|
| 393 |
+
gr.Examples(
|
| 394 |
+
examples=[
|
| 395 |
+
[ "inspiring female uplifting pop airy vocal electronic bright vocal vocal",
|
| 396 |
"""[verse]
|
| 397 |
Staring at the sunset, colors paint the sky
|
| 398 |
Thoughts of you keep swirling, can't deny
|
|
|
|
| 415 |
My heart beats only for you, can't you see?
|
| 416 |
I won't let you slip away from me
|
| 417 |
"""
|
| 418 |
+
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 419 |
[
|
| 420 |
"Bass Metalcore Thrash Metal Furious bright vocal male Angry aggressive vocal Guitar",
|
| 421 |
"""[verse]
|