-
Notifications
You must be signed in to change notification settings - Fork 307
Description
Trying to set this up on a windows 10 machine with 16 gig ram and an RTX 3070 8 gig card.
After following the instructions, my first attempt ended with an error saying torch was not compiled with CUDA:
[ERROR] Error during text-to-video generation: Torch not compiled with CUDA enabled
I installed torch and torchvision cuda versions to try and fix this, so the system was now like this:
import torch
import torchvision
print(torch.version) # Check PyTorch version
2.4.1+cu118
print(torchvision.version) # Check torchvision version
0.19.1+cu118
print(torch.cuda.is_available()) # Should return True if CUDA is enabled
True
Next attempt, tried both text to video and image to video, both times got an error to do with matrices.
[ERROR] Error during image-to-video generation: Expected parameter covariance_matrix (Tensor of shape (4, 4)) of distribution MultivariateNormal(loc: torch.Size([4]), covariance_matrix: torch.Size([4, 4])) to satisfy the constraint PositiveDefinite(), but found invalid values:
tensor([[ 1.0000, -0.3333, -0.3333, -0.3333],
[-0.3333, 1.0000, -0.3333, -0.3333],
[-0.3333, -0.3333, 1.0000, -0.3333],
[-0.3333, -0.3333, -0.3333, 1.0000]])