Commit ·
0a5362f
1
Parent(s): 5d5b191
Use bare PyPI torch/torchaudio 2.11.0 instead of +cu128 index build
Browse filesZeroGPU's config validator rejects local-version suffixes like
+cu128 (CONFIG_ERROR: "torch version in requirements.txt is not
compatible with ZeroGPU"), even though 2.11.0 is on its supported
list. The plain PyPI torch==2.11.0 wheel is already CUDA-enabled
(530MB, bundles Blackwell-compatible kernels), so the custom
cu128 index isn't needed.
- requirements.txt +2 -3
requirements.txt
CHANGED
|
@@ -20,7 +20,6 @@ loguru
|
|
| 20 |
torchdiffeq
|
| 21 |
open_clip_torch
|
| 22 |
git+https://github.com/descriptinc/audiotools
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
torchaudio==2.11.0+cu128
|
| 26 |
mmcv-lite==2.2.0
|
|
|
|
| 20 |
torchdiffeq
|
| 21 |
open_clip_torch
|
| 22 |
git+https://github.com/descriptinc/audiotools
|
| 23 |
+
torch==2.11.0
|
| 24 |
+
torchaudio==2.11.0
|
|
|
|
| 25 |
mmcv-lite==2.2.0
|