From 5a363f3b6cddea1c69bd420e6eeba304514086c4 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Tue, 2 Jun 2026 20:32:03 -0700 Subject: [PATCH] fix(video): add torchvision to video-marlin extras MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missing from initial extras list — required by QwenVLVideoProcessor at inference time. On CUDA 13 nodes must be installed from the PyTorch nightly cu130 index to avoid a torch version downgrade: pip install --index-url https://download.pytorch.org/whl/nightly/cu130 torch torchvision Discovered during Muninn deployment (2026-05-26). --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 84c6a66..4c627e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,7 @@ musicgen-service = [ video-marlin = [ "torch>=2.11", "transformers>=5.7.0", + "torchvision", # On CUDA 13 nodes install from PyTorch nightly: pip install --index-url https://download.pytorch.org/whl/nightly/cu130 torch torchvision "torchcodec", "qwen-vl-utils>=0.0.14", "av",