Spaces:
Building
on
L40S
Building
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -200,7 +200,7 @@ def initialize_system():
|
|
200 |
logging.error(f"Directory error: {e}")
|
201 |
raise
|
202 |
|
203 |
-
@lru_cache(maxsize=
|
204 |
def get_cached_file_path(content_hash, prefix):
|
205 |
return create_temp_file(content_hash, prefix)
|
206 |
|
@@ -232,6 +232,8 @@ def get_last_mp3_file(output_dir):
|
|
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 |
# λͺ¨λΈ μ ν λ° μ€μ
|
@@ -269,17 +271,11 @@ def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
|
|
269 |
"--chorus_strength", str(config['chorus_strength'])
|
270 |
]
|
271 |
|
272 |
-
# GPUκ°
|
273 |
if torch.cuda.is_available():
|
274 |
command.extend([
|
275 |
-
"--disable_offload_model"
|
276 |
-
"--bf16"
|
277 |
])
|
278 |
-
try:
|
279 |
-
import flash_attn
|
280 |
-
command.append("--use_flash_attention_2")
|
281 |
-
except ImportError:
|
282 |
-
logging.info("flash-attn not available, skipping flash attention option")
|
283 |
|
284 |
# CUDA νκ²½ λ³μ μ€μ
|
285 |
env = os.environ.copy()
|
@@ -293,8 +289,23 @@ def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
|
|
293 |
})
|
294 |
|
295 |
# λͺ
λ Ή μ€ν
|
296 |
-
process = subprocess.run(
|
297 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
|
299 |
# κ²°κ³Ό μ²λ¦¬
|
300 |
last_mp3 = get_last_mp3_file(output_dir)
|
@@ -372,34 +383,56 @@ def main():
|
|
372 |
[
|
373 |
"female blues airy vocal bright vocal piano sad romantic guitar jazz",
|
374 |
"""[verse]
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
"""
|
387 |
],
|
388 |
# νκ΅μ΄ μμ
|
389 |
[
|
390 |
"K-pop bright energetic synth dance electronic",
|
391 |
"""[verse]
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
|
|
|
|
|
|
|
|
|
|
|
403 |
"""
|
404 |
]
|
405 |
],
|
@@ -427,4 +460,4 @@ if __name__ == "__main__":
|
|
427 |
show_api=True,
|
428 |
show_error=True,
|
429 |
max_threads=2
|
430 |
-
)
|
|
|
200 |
logging.error(f"Directory error: {e}")
|
201 |
raise
|
202 |
|
203 |
+
@lru_cache(maxsize=50)
|
204 |
def get_cached_file_path(content_hash, prefix):
|
205 |
return create_temp_file(content_hash, prefix)
|
206 |
|
|
|
232 |
mp3_files_with_path.sort(key=os.path.getmtime, reverse=True)
|
233 |
return mp3_files_with_path[0]
|
234 |
|
235 |
+
|
236 |
+
|
237 |
def infer(genre_txt_content, lyrics_txt_content, num_segments, max_new_tokens):
|
238 |
try:
|
239 |
# λͺ¨λΈ μ ν λ° μ€μ
|
|
|
271 |
"--chorus_strength", str(config['chorus_strength'])
|
272 |
]
|
273 |
|
274 |
+
# GPUκ° μλ κ²½μ°μλ§ μΆκ° μ΅μ
μ μ©
|
275 |
if torch.cuda.is_available():
|
276 |
command.extend([
|
277 |
+
"--disable_offload_model"
|
|
|
278 |
])
|
|
|
|
|
|
|
|
|
|
|
279 |
|
280 |
# CUDA νκ²½ λ³μ μ€μ
|
281 |
env = os.environ.copy()
|
|
|
289 |
})
|
290 |
|
291 |
# λͺ
λ Ή μ€ν
|
292 |
+
process = subprocess.run(
|
293 |
+
command,
|
294 |
+
env=env,
|
295 |
+
check=False,
|
296 |
+
capture_output=True,
|
297 |
+
text=True
|
298 |
+
)
|
299 |
+
|
300 |
+
# μ€ν κ²°κ³Ό λ‘κΉ
|
301 |
+
logging.info(f"Command output: {process.stdout}")
|
302 |
+
if process.stderr:
|
303 |
+
logging.error(f"Command error: {process.stderr}")
|
304 |
+
|
305 |
+
if process.returncode != 0:
|
306 |
+
logging.error(f"Command failed with return code: {process.returncode}")
|
307 |
+
logging.error(f"Command: {' '.join(command)}")
|
308 |
+
raise RuntimeError(f"Inference failed: {process.stderr}")
|
309 |
|
310 |
# κ²°κ³Ό μ²λ¦¬
|
311 |
last_mp3 = get_last_mp3_file(output_dir)
|
|
|
383 |
[
|
384 |
"female blues airy vocal bright vocal piano sad romantic guitar jazz",
|
385 |
"""[verse]
|
386 |
+
In the quiet of the evening, shadows start to fall
|
387 |
+
Whispers of the night wind echo through the hall
|
388 |
+
Lost within the silence, I hear your gentle voice
|
389 |
+
Guiding me back homeward, making my heart rejoice
|
390 |
|
391 |
+
[chorus]
|
392 |
+
Don't let this moment fade, hold me close tonight
|
393 |
+
With you here beside me, everything's alright
|
394 |
+
Can't imagine life alone, don't want to let you go
|
395 |
+
Stay with me forever, let our love just flow
|
396 |
|
397 |
+
[verse]
|
398 |
+
Morning light is breaking, through the window pane
|
399 |
+
Memories of yesterday, like soft summer rain
|
400 |
+
In your arms I'm finding, all I'm dreaming of
|
401 |
+
Every day beside you, fills my heart with love
|
402 |
+
|
403 |
+
[chorus]
|
404 |
+
Don't let this moment fade, hold me close tonight
|
405 |
+
With you here beside me, everything's alright
|
406 |
+
Can't imagine life alone, don't want to let you go
|
407 |
+
Stay with me forever, let our love just flow
|
408 |
"""
|
409 |
],
|
410 |
# νκ΅μ΄ μμ
|
411 |
[
|
412 |
"K-pop bright energetic synth dance electronic",
|
413 |
"""[verse]
|
414 |
+
λΉλλ λ³λ€μ²λΌ μ°λ¦¬μ κΏμ΄
|
415 |
+
μ νλμ μλμ λ°μ§μ΄λ€
|
416 |
+
ν¨κ»λΌλ©΄ μ΄λλ κ° μ μμ΄
|
417 |
+
μ°λ¦¬μ μ΄μΌκΈ°κ° μμλλ€
|
418 |
+
|
419 |
+
[chorus]
|
420 |
+
λ¬λ €κ°μ λ λμ΄ λ λ©λ¦¬
|
421 |
+
λλ €μμ μμ΄ λμ ν¨κ»λΌλ©΄
|
422 |
+
μμν κ³μλ μ°λ¦¬μ λ
Έλ
|
423 |
+
μ΄ μκ°μ κΈ°μ΅ν΄ forever
|
424 |
|
425 |
+
[verse]
|
426 |
+
μλ‘μ΄ λ΄μΌμ ν₯ν΄ λμκ°
|
427 |
+
μ°λ¦¬λ§μ κΈΈμ λ§λ€μ΄κ°
|
428 |
+
λ―ΏμμΌλ‘ κ°λν μ°λ¦¬μ λ§
|
429 |
+
μ λ λ©μΆμ§ μμ κ³μν΄μ
|
430 |
|
431 |
+
[chorus]
|
432 |
+
λ¬λ €κ°μ λ λμ΄ λ λ©λ¦¬
|
433 |
+
λλ €μμ μμ΄ λμ ν¨κ»λΌλ©΄
|
434 |
+
μμν κ³μλ μ°λ¦¬μ λ
Έλ
|
435 |
+
μ΄ μκ°μ κΈ°μ΅ν΄ forever
|
436 |
"""
|
437 |
]
|
438 |
],
|
|
|
460 |
show_api=True,
|
461 |
show_error=True,
|
462 |
max_threads=2
|
463 |
+
)
|