Spaces:
Paused
Paused
Update api/ltx/ltx_aduc_manager.py
Browse files- 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 |
# ==============================================================================
|