Spaces:
Running on Zero
Running on Zero
add torchvision: Qwen3-VL processor imports it at load time
Browse files- requirements.txt +4 -0
requirements.txt
CHANGED
|
@@ -1,6 +1,10 @@
|
|
| 1 |
# Pinned against the ZeroGPU-supported matrix and the Qwen3-VL model card.
|
| 2 |
# ZeroGPU supports torch 2.8.0+; the model card specifies torch==2.8.0.
|
| 3 |
torch==2.8.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
transformers>=4.57.0
|
| 5 |
sentence-transformers>=5.0.0
|
| 6 |
qwen-vl-utils>=0.0.14
|
|
|
|
| 1 |
# Pinned against the ZeroGPU-supported matrix and the Qwen3-VL model card.
|
| 2 |
# ZeroGPU supports torch 2.8.0+; the model card specifies torch==2.8.0.
|
| 3 |
torch==2.8.0
|
| 4 |
+
# Required, not optional: Qwen3-VL's processor pulls in Qwen3VLVideoProcessor,
|
| 5 |
+
# which imports torchvision at load time. Without it the model fails to load on
|
| 6 |
+
# every backend. 0.23.x is the torchvision paired with torch 2.8.
|
| 7 |
+
torchvision==0.23.0
|
| 8 |
transformers>=4.57.0
|
| 9 |
sentence-transformers>=5.0.0
|
| 10 |
qwen-vl-utils>=0.0.14
|