You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from video_kandinsky3 import get_T2V_pipeline
import os
os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "max_split_size_mb:8024"
t2v_pipe = get_T2V_pipeline('cuda', fp16=True)
pfps = 'medium' # ['low', 'medium', 'high']
video = t2v_pipe(
'a red car is drifting on the mountain road, close view, fast movement',
width=640, height=384, fps=fps
)
RuntimeError: size of tensors must match except in dimsion 1. Expected size 2 but got size 3 for tensor number 1 in the list
The text was updated successfully, but these errors were encountered:
from video_kandinsky3 import get_T2V_pipeline
import os
os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "max_split_size_mb:8024"
t2v_pipe = get_T2V_pipeline('cuda', fp16=True)
pfps = 'medium' # ['low', 'medium', 'high']
video = t2v_pipe(
'a red car is drifting on the mountain road, close view, fast movement',
width=640, height=384, fps=fps
)
RuntimeError: size of tensors must match except in dimsion 1. Expected size 2 but got size 3 for tensor number 1 in the list
The text was updated successfully, but these errors were encountered: