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