eeuuia commited on
Commit
eefd283
·
verified ·
1 Parent(s): 4da4d44

Update api/ltx/ltx_aduc_manager.py

Browse files
Files changed (1) hide show
  1. api/ltx/ltx_aduc_manager.py +11 -0
api/ltx/ltx_aduc_manager.py CHANGED
@@ -34,6 +34,17 @@ if repo_path not in sys.path:
34
  from ltx_video.pipelines.pipeline_ltx_video import LTXVideoPipeline
35
  from ltx_video.models.autoencoders.vae_encode import vae_encode, latent_to_pixel_coords
36
 
 
 
 
 
 
 
 
 
 
 
 
37
  # ==============================================================================
38
  # --- DEFINIÇÃO DOS DATACLASSES DE CONDICIONAMENTO ADUC-SDR ---
39
  # ==============================================================================
 
34
  from ltx_video.pipelines.pipeline_ltx_video import LTXVideoPipeline
35
  from ltx_video.models.autoencoders.vae_encode import vae_encode, latent_to_pixel_coords
36
 
37
+
38
+ import warnings
39
+ warnings.filterwarnings("ignore", category=UserWarning)
40
+ warnings.filterwarnings("ignore", category=FutureWarning)
41
+ warnings.filterwarnings("ignore", message=".*")
42
+ from huggingface_hub import logging
43
+ logging.set_verbosity_error()
44
+ logging.set_verbosity_warning()
45
+ logging.set_verbosity_info()
46
+ logging.set_verbosity_debug()
47
+
48
  # ==============================================================================
49
  # --- DEFINIÇÃO DOS DATACLASSES DE CONDICIONAMENTO ADUC-SDR ---
50
  # ==============================================================================