Skip to content

1: Torch compiled without CUDA. 2: bad covariance_matrix #137

@mkultra333

Description

@mkultra333

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]])

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions