diff --git a/notebooks/catvton/catvton_quantization_helper.py b/notebooks/catvton/catvton_quantization_helper.py index 4f8d9523631..20faf6e7c0b 100644 --- a/notebooks/catvton/catvton_quantization_helper.py +++ b/notebooks/catvton/catvton_quantization_helper.py @@ -1,7 +1,7 @@ from typing import Any from pathlib import Path -from tqdm.notebook import tqdm +from tqdm import tqdm from transformers import set_seed import numpy as np import openvino as ov diff --git a/notebooks/ltx-video/ltx_video_quantization_helper.py b/notebooks/ltx-video/ltx_video_quantization_helper.py index cbea50ccc8c..ab52223a47d 100644 --- a/notebooks/ltx-video/ltx_video_quantization_helper.py +++ b/notebooks/ltx-video/ltx_video_quantization_helper.py @@ -4,7 +4,7 @@ from pathlib import Path import openvino as ov import torch -from tqdm.notebook import tqdm +from tqdm import tqdm negative_prompts = [ "blurry unreal occluded", diff --git a/notebooks/sam2-image-segmentation/automatic_mask_generation_helper.py b/notebooks/sam2-image-segmentation/automatic_mask_generation_helper.py index a99ff2bd6eb..1818301a959 100644 --- a/notebooks/sam2-image-segmentation/automatic_mask_generation_helper.py +++ b/notebooks/sam2-image-segmentation/automatic_mask_generation_helper.py @@ -20,7 +20,7 @@ import torch -from tqdm.notebook import tqdm +from tqdm import tqdm import cv2 diff --git a/notebooks/stable-diffusion-v3-torch-fx/sd3_quantization_helper.py b/notebooks/stable-diffusion-v3-torch-fx/sd3_quantization_helper.py index 2c65ddfd0cf..815d1455aed 100644 --- a/notebooks/stable-diffusion-v3-torch-fx/sd3_quantization_helper.py +++ b/notebooks/stable-diffusion-v3-torch-fx/sd3_quantization_helper.py @@ -7,7 +7,7 @@ import numpy as np import openvino as ov import torch -from tqdm.notebook import tqdm +from tqdm import tqdm from transformers import set_seed from sd3_helper import MODEL_DIR, TRANSFORMER_PATH, TEXT_ENCODER_PATH, TEXT_ENCODER_2_PATH, TEXT_ENCODER_3_PATH, VAE_DECODER_PATH, init_pipeline