Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notebooks/catvton/catvton_quantization_helper.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion notebooks/ltx-video/ltx_video_quantization_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import torch

from tqdm.notebook import tqdm
from tqdm import tqdm

import cv2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down