Spaces:
Building
on
L40S
Building
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -423,50 +423,93 @@ def optimize_model_selection(lyrics, genre):
|
|
423 |
return model_path, model_config[model_path], params
|
424 |
|
425 |
def main():
|
426 |
-
with gr.Blocks(
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
maximum=4,
|
448 |
-
step=1,
|
449 |
-
interactive=False
|
450 |
-
)
|
451 |
-
max_new_tokens = gr.Slider(
|
452 |
-
label="Max New Tokens (Auto-adjusted based on lyrics)",
|
453 |
-
minimum=500,
|
454 |
-
maximum=32000,
|
455 |
-
step=500,
|
456 |
-
value=4000,
|
457 |
-
interactive=False
|
458 |
-
)
|
459 |
with gr.Row():
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
In the quiet of the evening, shadows start to fall
|
471 |
Whispers of the night wind echo through the hall
|
472 |
Lost within the silence, I hear your gentle voice
|
@@ -474,41 +517,50 @@ Guiding me back homeward, making my heart rejoice
|
|
474 |
|
475 |
[chorus]
|
476 |
Don't let this moment fade, hold me close tonight
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
|
|
481 |
[verse]
|
482 |
-
In the quiet of the evening, shadows start to fall
|
483 |
-
Whispers of the night wind echo through the hall
|
484 |
-
Lost within the silence, I hear your gentle voice
|
485 |
-
Guiding me back homeward, making my heart rejoice
|
486 |
-
|
487 |
-
[chorus]
|
488 |
-
Don't let this moment fade, hold me close tonight
|
489 |
-
With you here beside me, everything's alright
|
490 |
-
Can't imagine life alone, don't want to let you go
|
491 |
-
Stay with me forever, let our love just flow"""
|
492 |
-
],
|
493 |
-
[
|
494 |
-
"K-pop bright energetic synth dance electronic",
|
495 |
-
"""[verse]
|
496 |
μΈμ κ° λ§μ£Όν λλΉ μμμ
|
497 |
-
|
498 |
-
[chorus]
|
499 |
-
λ€μ ν λ² λ΄κ² λ§ν΄μ€
|
500 |
-
|
501 |
-
[verse]
|
502 |
μ΄λμ΄ λ°€μ μ§λ λλ§λ€
|
503 |
|
504 |
[chorus]
|
505 |
λ€μ ν λ² λ΄κ² λ§ν΄μ€
|
506 |
"""
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
initialize_system()
|
513 |
|
514 |
def update_info(lyrics):
|
@@ -518,31 +570,39 @@ Stay with me forever, let our love just flow"""
|
|
518 |
duration = params['estimated_duration']
|
519 |
sections = params['sections']
|
520 |
return (
|
521 |
-
f"Estimated
|
522 |
-
f"Verses: {sections['verse']}, Chorus: {sections['chorus']}
|
523 |
)
|
524 |
|
|
|
|
|
|
|
|
|
525 |
lyrics_txt.change(
|
526 |
fn=update_info,
|
527 |
inputs=[lyrics_txt],
|
528 |
outputs=[duration_info, sections_info]
|
529 |
)
|
530 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
531 |
submit_btn.click(
|
532 |
-
fn=
|
533 |
inputs=[genre_txt, lyrics_txt, num_segments, max_new_tokens],
|
534 |
outputs=[music_out]
|
535 |
)
|
536 |
|
537 |
-
return demo
|
538 |
-
|
539 |
-
if __name__ == "__main__":
|
540 |
-
demo = main()
|
541 |
-
demo.queue(max_size=20).launch(
|
542 |
-
server_name="0.0.0.0",
|
543 |
-
server_port=7860,
|
544 |
-
share=True,
|
545 |
-
show_api=True,
|
546 |
-
show_error=True,
|
547 |
-
max_threads=8
|
548 |
-
)
|
|
|
423 |
return model_path, model_config[model_path], params
|
424 |
|
425 |
def main():
|
426 |
+
with gr.Blocks(theme=gr.themes.Soft(
|
427 |
+
primary_hue="indigo",
|
428 |
+
secondary_hue="purple",
|
429 |
+
neutral_hue="slate",
|
430 |
+
font=["Arial", "sans-serif"]
|
431 |
+
)) as demo:
|
432 |
+
with gr.Column(elem_id="main-container"):
|
433 |
+
# ν€λ μΉμ
|
434 |
+
with gr.Row(elem_id="header"):
|
435 |
+
gr.Markdown(
|
436 |
+
"""
|
437 |
+
# π΅ Open SUNO: AI Music Generator
|
438 |
+
### Create complete songs from your lyrics in multiple languages
|
439 |
+
""",
|
440 |
+
elem_id="title"
|
441 |
+
)
|
442 |
+
|
443 |
+
# λ©μΈ 컨ν
μΈ λ₯Ό νμΌλ‘ ꡬμ±
|
444 |
+
with gr.Tabs() as tabs:
|
445 |
+
# μμ± ν
|
446 |
+
with gr.TabItem("β¨ Create Music", id="create"):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
with gr.Row():
|
448 |
+
# μ
λ ₯ μΉμ
|
449 |
+
with gr.Column(scale=1):
|
450 |
+
genre_txt = gr.Textbox(
|
451 |
+
label="πΈ Music Genre & Style",
|
452 |
+
placeholder="e.g., K-pop bright energetic synth dance electronic...",
|
453 |
+
elem_id="genre-input"
|
454 |
+
)
|
455 |
+
lyrics_txt = gr.Textbox(
|
456 |
+
label="π Lyrics",
|
457 |
+
placeholder="Enter lyrics with section tags: [verse], [chorus], [bridge]...",
|
458 |
+
lines=10,
|
459 |
+
elem_id="lyrics-input"
|
460 |
+
)
|
461 |
+
|
462 |
+
# μ 보 νμ μΉμ
|
463 |
+
with gr.Row():
|
464 |
+
with gr.Column(scale=1):
|
465 |
+
duration_info = gr.Label(
|
466 |
+
label="β±οΈ Estimated Duration",
|
467 |
+
elem_id="duration-info"
|
468 |
+
)
|
469 |
+
with gr.Column(scale=1):
|
470 |
+
sections_info = gr.Label(
|
471 |
+
label="π Section Analysis",
|
472 |
+
elem_id="sections-info"
|
473 |
+
)
|
474 |
+
|
475 |
+
# μμ± λ²νΌ
|
476 |
+
submit_btn = gr.Button(
|
477 |
+
"πΌ Generate Music",
|
478 |
+
variant="primary",
|
479 |
+
elem_id="generate-btn"
|
480 |
+
)
|
481 |
+
|
482 |
+
# μΆλ ₯ μΉμ
|
483 |
+
with gr.Column(scale=1):
|
484 |
+
music_out = gr.Audio(
|
485 |
+
label="π΅ Generated Music",
|
486 |
+
elem_id="music-output"
|
487 |
+
)
|
488 |
+
|
489 |
+
# μ§ν μν νμ
|
490 |
+
progress = gr.Textbox(
|
491 |
+
label="Generation Status",
|
492 |
+
interactive=False,
|
493 |
+
elem_id="progress-status"
|
494 |
+
)
|
495 |
+
|
496 |
+
# νμ€ν 리 ν
|
497 |
+
with gr.TabItem("π History", id="history"):
|
498 |
+
history_list = gr.Dataset(
|
499 |
+
components=[gr.Audio, gr.Textbox, gr.Textbox],
|
500 |
+
headers=["Generated Music", "Genre", "Lyrics"],
|
501 |
+
samples=[],
|
502 |
+
elem_id="history-list"
|
503 |
+
)
|
504 |
+
gr.Markdown("*Click on any entry to play the music*")
|
505 |
+
|
506 |
+
# μμ μΉμ
|
507 |
+
with gr.Accordion("π Examples", open=False):
|
508 |
+
gr.Examples(
|
509 |
+
examples=[
|
510 |
+
[
|
511 |
+
"female blues airy vocal bright vocal piano sad romantic guitar jazz",
|
512 |
+
"""[verse]
|
513 |
In the quiet of the evening, shadows start to fall
|
514 |
Whispers of the night wind echo through the hall
|
515 |
Lost within the silence, I hear your gentle voice
|
|
|
517 |
|
518 |
[chorus]
|
519 |
Don't let this moment fade, hold me close tonight
|
520 |
+
"""
|
521 |
+
],
|
522 |
+
[
|
523 |
+
"K-pop bright energetic synth dance electronic",
|
524 |
+
"""
|
525 |
[verse]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
μΈμ κ° λ§μ£Όν λλΉ μμμ
|
|
|
|
|
|
|
|
|
|
|
527 |
μ΄λμ΄ λ°€μ μ§λ λλ§λ€
|
528 |
|
529 |
[chorus]
|
530 |
λ€μ ν λ² λ΄κ² λ§ν΄μ€
|
531 |
"""
|
532 |
+
]
|
533 |
+
],
|
534 |
+
inputs=[genre_txt, lyrics_txt]
|
535 |
+
)
|
536 |
+
|
537 |
+
# λμλ§ λ° μ€λͺ
μΉμ
|
538 |
+
with gr.Accordion("βΉοΈ Help & Information", open=False):
|
539 |
+
gr.Markdown(
|
540 |
+
"""
|
541 |
+
### π΅ How to Use
|
542 |
+
1. **Enter Genre & Style**: Describe the musical style you want (e.g., "K-pop", "Jazz", "Rock")
|
543 |
+
2. **Input Lyrics**: Write your lyrics using section tags:
|
544 |
+
- Use `[verse]` for verses
|
545 |
+
- Use `[chorus]` for choruses
|
546 |
+
- Use `[bridge]` for bridges
|
547 |
+
3. **Generate**: Click the Generate button and wait for your music!
|
548 |
+
|
549 |
+
### π Supported Languages
|
550 |
+
- English
|
551 |
+
- Korean (νκ΅μ΄)
|
552 |
+
- Japanese (ζ₯ζ¬θͺ)
|
553 |
+
- Chinese (δΈζ)
|
554 |
+
|
555 |
+
### β‘ Tips
|
556 |
+
- Be specific with your genre descriptions
|
557 |
+
- Include emotion and instrument preferences
|
558 |
+
- Make sure to properly tag your lyrics sections
|
559 |
+
- For best results, include both verse and chorus sections
|
560 |
+
"""
|
561 |
+
)
|
562 |
+
|
563 |
+
# μμ€ν
μ΄κΈ°ν
|
564 |
initialize_system()
|
565 |
|
566 |
def update_info(lyrics):
|
|
|
570 |
duration = params['estimated_duration']
|
571 |
sections = params['sections']
|
572 |
return (
|
573 |
+
f"β±οΈ Estimated: {duration:.1f} seconds",
|
574 |
+
f"π Verses: {sections['verse']}, Chorus: {sections['chorus']}"
|
575 |
)
|
576 |
|
577 |
+
def update_history(audio, genre, lyrics):
|
578 |
+
return history_list.update(samples=[[audio, genre, lyrics]] + history_list.samples)
|
579 |
+
|
580 |
+
# μ΄λ²€νΈ νΈλ€λ¬
|
581 |
lyrics_txt.change(
|
582 |
fn=update_info,
|
583 |
inputs=[lyrics_txt],
|
584 |
outputs=[duration_info, sections_info]
|
585 |
)
|
586 |
|
587 |
+
def generate_with_progress(genre, lyrics, num_segments, max_tokens):
|
588 |
+
progress.update(value="π΅ Starting generation...")
|
589 |
+
try:
|
590 |
+
result = infer(genre, lyrics, num_segments, max_tokens)
|
591 |
+
if result:
|
592 |
+
progress.update(value="β
Generation complete!")
|
593 |
+
update_history(result, genre, lyrics)
|
594 |
+
return result
|
595 |
+
else:
|
596 |
+
progress.update(value="β Generation failed")
|
597 |
+
return None
|
598 |
+
except Exception as e:
|
599 |
+
progress.update(value=f"β Error: {str(e)}")
|
600 |
+
return None
|
601 |
+
|
602 |
submit_btn.click(
|
603 |
+
fn=generate_with_progress,
|
604 |
inputs=[genre_txt, lyrics_txt, num_segments, max_new_tokens],
|
605 |
outputs=[music_out]
|
606 |
)
|
607 |
|
608 |
+
return demo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|