EuuIia commited on
Commit
b93af84
·
verified ·
1 Parent(s): 062dbc3

Update managers/vae_manager.py

Browse files
Files changed (1) hide show
  1. managers/vae_manager.py +11 -0
managers/vae_manager.py CHANGED
@@ -8,6 +8,17 @@ import subprocess
8
  import sys
9
  from pathlib import Path
10
 
 
 
 
 
 
 
 
 
 
 
 
11
  DEPS_DIR = Path("/data")
12
  LTX_VIDEO_REPO_DIR = DEPS_DIR / "LTX-Video"
13
  if not LTX_VIDEO_REPO_DIR.exists():
 
8
  import sys
9
  from pathlib import Path
10
 
11
+ from huggingface_hub import logging
12
+
13
+ huggingface_hub.utils.logging.enable_propagation
14
+ logging.set_verbosity_error()
15
+ logging.set_verbosity_warning()
16
+ logging.set_verbosity_info()
17
+ logging.set_verbosity_debug()
18
+
19
+ enable_progress_bars()
20
+
21
+
22
  DEPS_DIR = Path("/data")
23
  LTX_VIDEO_REPO_DIR = DEPS_DIR / "LTX-Video"
24
  if not LTX_VIDEO_REPO_DIR.exists():