import torch import torchvision # Example dummy video tensor video = torch.randint(0, 255, (30, 720, 1280, 3), dtype=torch.uint8) # 30 frames of 720p video # Write the video torchvision.io.write_video ...
Is there any prebuilt wheels for python 3.10 with cuda ? If my environment uses python3.10 + cuda 11.8, what is the best way to install pytorch3d ? I've been trying ...