ginipick commited on
Commit
fe0dd07
Β·
verified Β·
1 Parent(s): 06d41c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +129 -132
app.py CHANGED
@@ -20,7 +20,6 @@ logging.basicConfig(
20
  ]
21
  )
22
 
23
-
24
  # 가사 뢄석 ν•¨μˆ˜
25
  def analyze_lyrics(lyrics):
26
  # 쀄 λ‹¨μœ„λ‘œ 뢄리
@@ -162,7 +161,6 @@ def install_flash_attn():
162
  except ImportError:
163
  logging.info("Installing flash-attn...")
164
 
165
- # CUDA 12.1용 직접 μ„€μΉ˜ μ‹œλ„
166
  try:
167
  subprocess.run(
168
  ["pip", "install", "flash-attn", "--no-build-isolation"],
@@ -179,18 +177,6 @@ def install_flash_attn():
179
  logging.warning(f"Failed to install flash-attn: {e}")
180
  return False
181
 
182
- # ... (λ‚˜λ¨Έμ§€ μ½”λ“œλŠ” 동일) ...
183
-
184
- # μ„œλ²„ μ„€μ •μœΌλ‘œ μ‹€ν–‰ λΆ€λΆ„λ§Œ μˆ˜μ •
185
- demo.queue(max_size=20).launch(
186
- server_name="0.0.0.0",
187
- server_port=7860,
188
- share=True,
189
- show_api=True,
190
- show_error=True,
191
- max_threads=2 # concurrency_count λŒ€μ‹  max_threads μ‚¬μš©
192
- )
193
-
194
  def initialize_system():
195
  optimize_gpu_settings()
196
  has_flash_attn = install_flash_attn()
@@ -214,6 +200,38 @@ def initialize_system():
214
  logging.error(f"Directory error: {e}")
215
  raise
216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
218
  try:
219
  # λͺ¨λΈ 선택 및 μ„€μ •
@@ -299,130 +317,109 @@ def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
299
  except Exception as e:
300
  logging.warning(f"Failed to remove temporary file {file}: {e}")
301
 
302
- @lru_cache(maxsize=100)
303
- def get_cached_file_path(content_hash, prefix):
304
- return create_temp_file(content_hash, prefix)
305
-
306
- def empty_output_folder(output_dir):
307
- try:
308
- shutil.rmtree(output_dir)
309
- os.makedirs(output_dir)
310
- logging.info(f"Output folder cleaned: {output_dir}")
311
- except Exception as e:
312
- logging.error(f"Error cleaning output folder: {e}")
313
- raise
314
-
315
- def create_temp_file(content, prefix, suffix=".txt"):
316
- temp_file = tempfile.NamedTemporaryFile(delete=False, mode="w", prefix=prefix, suffix=suffix)
317
- content = content.strip() + "\n\n"
318
- content = content.replace("\r\n", "\n").replace("\r", "\n")
319
- temp_file.write(content)
320
- temp_file.close()
321
- logging.debug(f"Temporary file created: {temp_file.name}")
322
- return temp_file.name
323
-
324
- def get_last_mp3_file(output_dir):
325
- mp3_files = [f for f in os.listdir(output_dir) if f.endswith('.mp3')]
326
- if not mp3_files:
327
- logging.warning("No MP3 files found")
328
- return None
329
-
330
- mp3_files_with_path = [os.path.join(output_dir, f) for f in mp3_files]
331
- mp3_files_with_path.sort(key=os.path.getmtime, reverse=True)
332
- return mp3_files_with_path[0]
333
-
334
-
335
- # Gradio μΈν„°νŽ˜μ΄μŠ€
336
- with gr.Blocks() as demo:
337
- with gr.Column():
338
- gr.Markdown("# YuE: Open Music Foundation Models for Full-Song Generation (Multi-Language Support)")
339
-
340
-
341
- with gr.Row():
342
- with gr.Column():
343
- genre_txt = gr.Textbox(
344
- label="Genre",
345
- placeholder="Enter music genre and style descriptions..."
346
- )
347
- lyrics_txt = gr.Textbox(
348
- label="Lyrics (Supports English, Korean, Japanese, Chinese)",
349
- placeholder="Enter song lyrics with [verse], [chorus], [bridge] tags...",
350
- lines=10
351
- )
352
-
353
- with gr.Column():
354
- num_segments = gr.Number(
355
- label="Number of Song Segments (Auto-adjusted based on lyrics)",
356
- value=2,
357
- minimum=1,
358
- maximum=4,
359
- step=1,
360
- interactive=False
361
- )
362
- max_new_tokens = gr.Slider(
363
- label="Max New Tokens (Auto-adjusted based on lyrics)",
364
- minimum=500,
365
- maximum=32000,
366
- step=500,
367
- value=4000,
368
- interactive=False
369
- )
370
- submit_btn = gr.Button("Generate Music", variant="primary")
371
- music_out = gr.Audio(label="Generated Audio")
372
-
373
- # λ‹€κ΅­μ–΄ 예제
374
- gr.Examples(
375
- examples=[
376
- # μ˜μ–΄ 예제
377
- [
378
- "female blues airy vocal bright vocal piano sad romantic guitar jazz",
379
- """[verse]
380
- In the quiet of the evening, shadows start to fall
381
- Whispers of the night wind echo through the hall
382
- Lost within the silence, I hear your gentle voice
383
- Guiding me back homeward, making my heart rejoice
384
-
385
- [chorus]
386
- Don't let this moment fade, hold me close tonight
387
- With you here beside me, everything's alright
388
- Can't imagine life alone, don't want to let you go
389
- Stay with me forever, let our love just flow
390
-
391
- """
392
  ],
393
- # ν•œκ΅­μ–΄ 예제
394
- [
395
- "K-pop bright energetic synth dance electronic",
396
- """[verse]
397
- λΉ›λ‚˜λŠ” λ³„λ“€μ²˜λŸΌ 우리의 꿈이
398
- μ € ν•˜λŠ˜μ„ μˆ˜λ†“μ•„ λ°˜μ§μ΄λ„€
399
- ν•¨κ»˜λΌλ©΄ μ–΄λ””λ“  갈 수 μžˆμ–΄
400
- 우리의 이야기가 μ‹œμž‘λ˜λ„€
401
-
402
- [chorus]
403
- λ‹¬λ €κ°€μž 더 높이 더 멀리
404
- 두렀움은 μ—†μ–΄ λ„ˆμ™€ ν•¨κ»˜λΌλ©΄
405
- μ˜μ›νžˆ 계속될 우리의 λ…Έλž˜
406
- 이 μˆœκ°„μ„ κΈ°μ–΅ν•΄ forever
407
 
408
- """
409
- ]
410
- ],
411
- inputs=[genre_txt, lyrics_txt]
 
 
 
 
412
  )
413
 
414
- # μ‹œμŠ€ν…œ μ΄ˆκΈ°ν™”
415
- initialize_system()
416
-
417
- # 이벀트 ν•Έλ“€λŸ¬
418
- submit_btn.click(
419
- fn=infer,
420
- inputs=[genre_txt, lyrics_txt, num_segments, max_new_tokens],
421
- outputs=[music_out]
422
- )
423
 
424
- # μ„œλ²„ μ„€μ •μœΌλ‘œ μ‹€ν–‰
425
  if __name__ == "__main__":
 
426
  demo.queue(max_size=20).launch(
427
  server_name="0.0.0.0",
428
  server_port=7860,
 
20
  ]
21
  )
22
 
 
23
  # 가사 뢄석 ν•¨μˆ˜
24
  def analyze_lyrics(lyrics):
25
  # 쀄 λ‹¨μœ„λ‘œ 뢄리
 
161
  except ImportError:
162
  logging.info("Installing flash-attn...")
163
 
 
164
  try:
165
  subprocess.run(
166
  ["pip", "install", "flash-attn", "--no-build-isolation"],
 
177
  logging.warning(f"Failed to install flash-attn: {e}")
178
  return False
179
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  def initialize_system():
181
  optimize_gpu_settings()
182
  has_flash_attn = install_flash_attn()
 
200
  logging.error(f"Directory error: {e}")
201
  raise
202
 
203
+ @lru_cache(maxsize=100)
204
+ def get_cached_file_path(content_hash, prefix):
205
+ return create_temp_file(content_hash, prefix)
206
+
207
+ def empty_output_folder(output_dir):
208
+ try:
209
+ shutil.rmtree(output_dir)
210
+ os.makedirs(output_dir)
211
+ logging.info(f"Output folder cleaned: {output_dir}")
212
+ except Exception as e:
213
+ logging.error(f"Error cleaning output folder: {e}")
214
+ raise
215
+
216
+ def create_temp_file(content, prefix, suffix=".txt"):
217
+ temp_file = tempfile.NamedTemporaryFile(delete=False, mode="w", prefix=prefix, suffix=suffix)
218
+ content = content.strip() + "\n\n"
219
+ content = content.replace("\r\n", "\n").replace("\r", "\n")
220
+ temp_file.write(content)
221
+ temp_file.close()
222
+ logging.debug(f"Temporary file created: {temp_file.name}")
223
+ return temp_file.name
224
+
225
+ def get_last_mp3_file(output_dir):
226
+ mp3_files = [f for f in os.listdir(output_dir) if f.endswith('.mp3')]
227
+ if not mp3_files:
228
+ logging.warning("No MP3 files found")
229
+ return None
230
+
231
+ mp3_files_with_path = [os.path.join(output_dir, f) for f in mp3_files]
232
+ mp3_files_with_path.sort(key=os.path.getmtime, reverse=True)
233
+ return mp3_files_with_path[0]
234
+
235
  def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
236
  try:
237
  # λͺ¨λΈ 선택 및 μ„€μ •
 
317
  except Exception as e:
318
  logging.warning(f"Failed to remove temporary file {file}: {e}")
319
 
320
+ def main():
321
+ # Gradio μΈν„°νŽ˜μ΄μŠ€
322
+ with gr.Blocks() as demo:
323
+ with gr.Column():
324
+ gr.Markdown("# YuE: Open Music Foundation Models for Full-Song Generation (Multi-Language Support)")
325
+ gr.HTML("""
326
+ <div style="display:flex;column-gap:4px;">
327
+ <a href="https://github.com/multimodal-art-projection/YuE">
328
+ <img src='https://img.shields.io/badge/GitHub-Repo-blue'>
329
+ </a>
330
+ <a href="https://map-yue.github.io">
331
+ <img src='https://img.shields.io/badge/Project-Page-green'>
332
+ </a>
333
+ </div>
334
+ """)
335
+
336
+ with gr.Row():
337
+ with gr.Column():
338
+ genre_txt = gr.Textbox(
339
+ label="Genre",
340
+ placeholder="Enter music genre and style descriptions..."
341
+ )
342
+ lyrics_txt = gr.Textbox(
343
+ label="Lyrics (Supports English, Korean, Japanese, Chinese)",
344
+ placeholder="Enter song lyrics with [verse], [chorus], [bridge] tags...",
345
+ lines=10
346
+ )
347
+
348
+ with gr.Column():
349
+ num_segments = gr.Number(
350
+ label="Number of Song Segments (Auto-adjusted based on lyrics)",
351
+ value=2,
352
+ minimum=1,
353
+ maximum=4,
354
+ step=1,
355
+ interactive=False
356
+ )
357
+ max_new_tokens = gr.Slider(
358
+ label="Max New Tokens (Auto-adjusted based on lyrics)",
359
+ minimum=500,
360
+ maximum=32000,
361
+ step=500,
362
+ value=4000,
363
+ interactive=False
364
+ )
365
+ submit_btn = gr.Button("Generate Music", variant="primary")
366
+ music_out = gr.Audio(label="Generated Audio")
367
+
368
+ # λ‹€κ΅­μ–΄ 예제
369
+ gr.Examples(
370
+ examples=[
371
+ # μ˜μ–΄ 예제
372
+ [
373
+ "female blues airy vocal bright vocal piano sad romantic guitar jazz",
374
+ """[verse]
375
+ In the quiet of the evening, shadows start to fall
376
+ Whispers of the night wind echo through the hall
377
+ Lost within the silence, I hear your gentle voice
378
+ Guiding me back homeward, making my heart rejoice
379
+
380
+ [chorus]
381
+ Don't let this moment fade, hold me close tonight
382
+ With you here beside me, everything's alright
383
+ Can't imagine life alone, don't want to let you go
384
+ Stay with me forever, let our love just flow
385
+
386
+ """
387
+ ],
388
+ # ν•œκ΅­μ–΄ 예제
389
+ [
390
+ "K-pop bright energetic synth dance electronic",
391
+ """[verse]
392
+ λΉ›λ‚˜λŠ” λ³„λ“€μ²˜λŸΌ 우리의 꿈이
393
+ μ € ν•˜λŠ˜μ„ μˆ˜λ†“μ•„ λ°˜μ§μ΄λ„€
394
+ ν•¨κ»˜λΌλ©΄ μ–΄λ””λ“  갈 수 μžˆμ–΄
395
+ 우리의 이야기가 μ‹œμž‘λ˜λ„€
396
+
397
+ [chorus]
398
+ λ‹¬λ €κ°€μž 더 높이 더 멀리
399
+ 두렀움은 μ—†μ–΄ λ„ˆμ™€ ν•¨κ»˜λΌλ©΄
400
+ μ˜μ›νžˆ 계속될 우리의 λ…Έλž˜
401
+ 이 μˆœκ°„μ„ κΈ°μ–΅ν•΄ forever
402
+
403
+ """
404
+ ]
 
 
 
 
 
405
  ],
406
+ inputs=[genre_txt, lyrics_txt]
407
+ )
 
 
 
 
 
 
 
 
 
 
 
 
408
 
409
+ # μ‹œμŠ€ν…œ μ΄ˆκΈ°ν™”
410
+ initialize_system()
411
+
412
+ # 이벀트 ν•Έλ“€λŸ¬
413
+ submit_btn.click(
414
+ fn=infer,
415
+ inputs=[genre_txt, lyrics_txt, num_segments, max_new_tokens],
416
+ outputs=[music_out]
417
  )
418
 
419
+ return demo
 
 
 
 
 
 
 
 
420
 
 
421
  if __name__ == "__main__":
422
+ demo = main()
423
  demo.queue(max_size=20).launch(
424
  server_name="0.0.0.0",
425
  server_port=7860,