ginipick commited on
Commit
01ee1f1
Β·
verified Β·
1 Parent(s): 9320919

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +60 -31
app.py CHANGED
@@ -330,18 +330,39 @@ def initialize_system():
330
  os.makedirs(base_dir, exist_ok=True)
331
  os.makedirs(os.path.join(base_dir, "models"), exist_ok=True)
332
 
333
- # xcodec_mini_infer λ‹€μš΄λ‘œλ“œ
334
- from huggingface_hub import snapshot_download
 
335
 
336
- xcodec_path = os.path.join(base_dir, "xcodec_mini_infer")
337
- os.makedirs(xcodec_path, exist_ok=True)
338
 
339
- # xcodec_mini_infer λͺ¨λΈ λ‹€μš΄λ‘œλ“œ
340
- snapshot_download(
341
- repo_id="m-a-p/xcodec_mini_infer",
342
- local_dir=xcodec_path,
343
- resume_download=True
344
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
 
346
  # YuE λͺ¨λΈλ“€ λ‹€μš΄λ‘œλ“œ
347
  models = [
@@ -351,30 +372,38 @@ def initialize_system():
351
  "m-a-p/YuE-s2-1B-general"
352
  ]
353
 
354
- for model in models:
355
- model_name = model.split('/')[-1]
356
- model_path = os.path.join(base_dir, "models", model_name)
357
- snapshot_download(
358
- repo_id=model,
359
- local_dir=model_path,
360
- resume_download=True
361
- )
 
 
 
 
 
 
 
 
 
 
 
 
362
 
363
- # μž‘μ—… 디렉토리 λ³€κ²½
364
- os.chdir(base_dir)
365
- logging.info(f"Working directory changed to: {os.getcwd()}")
 
 
 
 
 
366
 
367
- # ν•„μš”ν•œ 파일 쑴재 확인
368
- required_files = [
369
- os.path.join("xcodec_mini_infer", "config.json"),
370
- os.path.join("xcodec_mini_infer", "vocal_decoder.pth"),
371
- os.path.join("xcodec_mini_infer", "inst_decoder.pth")
372
- ]
373
 
374
- for file_path in required_files:
375
- if not os.path.exists(file_path):
376
- raise FileNotFoundError(f"Required file not found: {file_path}")
377
-
378
  except Exception as e:
379
  logging.error(f"Directory error: {e}")
380
  raise
 
330
  os.makedirs(base_dir, exist_ok=True)
331
  os.makedirs(os.path.join(base_dir, "models"), exist_ok=True)
332
 
333
+ # μž‘μ—… 디렉토리 λ³€κ²½
334
+ os.chdir(base_dir)
335
+ logging.info(f"Working directory changed to: {os.getcwd()}")
336
 
337
+ from huggingface_hub import snapshot_download, hf_hub_download
 
338
 
339
+ # xcodec_mini_infer νŒŒμΌλ“€ 직접 λ‹€μš΄λ‘œλ“œ
340
+ xcodec_dir = os.path.join(base_dir, "xcodec_mini_infer")
341
+ os.makedirs(xcodec_dir, exist_ok=True)
342
+
343
+ # ν•„μˆ˜ 파일 직접 λ‹€μš΄λ‘œλ“œ
344
+ required_files = {
345
+ "config.json": "config.json",
346
+ "vocal_decoder.pth": "vocal_decoder.pth",
347
+ "inst_decoder.pth": "inst_decoder.pth"
348
+ }
349
+
350
+ for file_name in required_files.keys():
351
+ try:
352
+ file_path = os.path.join(xcodec_dir, file_name)
353
+ if not os.path.exists(file_path):
354
+ downloaded_path = hf_hub_download(
355
+ repo_id="m-a-p/xcodec_mini_infer",
356
+ filename=file_name,
357
+ local_dir=xcodec_dir,
358
+ force_download=True
359
+ )
360
+ if downloaded_path != file_path:
361
+ shutil.copy2(downloaded_path, file_path)
362
+ logging.info(f"Downloaded {file_name} to {file_path}")
363
+ except Exception as e:
364
+ logging.error(f"Error downloading {file_name}: {e}")
365
+ raise
366
 
367
  # YuE λͺ¨λΈλ“€ λ‹€μš΄λ‘œλ“œ
368
  models = [
 
372
  "m-a-p/YuE-s2-1B-general"
373
  ]
374
 
375
+ with ThreadPoolExecutor(max_workers=4) as executor:
376
+ futures = []
377
+
378
+ # Flash Attention μ„€μΉ˜
379
+ futures.append(executor.submit(install_flash_attn))
380
+
381
+ # λͺ¨λΈ λ‹€μš΄λ‘œλ“œ
382
+ for model in models:
383
+ model_name = model.split('/')[-1]
384
+ model_path = os.path.join(base_dir, "models", model_name)
385
+ futures.append(executor.submit(
386
+ snapshot_download,
387
+ repo_id=model,
388
+ local_dir=model_path,
389
+ force_download=True
390
+ ))
391
+
392
+ # λͺ¨λ“  μž‘μ—… μ™„λ£Œ λŒ€κΈ°
393
+ for future in futures:
394
+ future.result()
395
 
396
+ # 파일 쑴재 확인
397
+ for file_name, _ in required_files.items():
398
+ file_path = os.path.join(xcodec_dir, file_name)
399
+ if not os.path.exists(file_path):
400
+ raise FileNotFoundError(f"Required file still missing after download: {file_path}")
401
+ else:
402
+ file_size = os.path.getsize(file_path)
403
+ logging.info(f"Verified {file_name}: {file_size} bytes")
404
 
405
+ logging.info("System initialization completed successfully")
 
 
 
 
 
406
 
 
 
 
 
407
  except Exception as e:
408
  logging.error(f"Directory error: {e}")
409
  raise