Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +5 -10
requirements.txt
CHANGED
|
@@ -1,13 +1,8 @@
|
|
| 1 |
-
# ---
|
| 2 |
-
|
| 3 |
-
torch==2.2.2
|
| 4 |
-
torchvision==0.17.2
|
| 5 |
-
torchaudio==2.2.2
|
| 6 |
|
| 7 |
-
# --- PyG
|
| 8 |
-
torch-geometric
|
| 9 |
-
|
| 10 |
-
# --- PyG extension wheels (match TORCH=2.2.0, CUDA=cpu) ---
|
| 11 |
-f https://data.pyg.org/whl/torch-2.2.0+cpu.html
|
| 12 |
pyg-lib
|
| 13 |
torch-scatter
|
|
@@ -15,7 +10,7 @@ torch-sparse
|
|
| 15 |
torch-cluster
|
| 16 |
torch-spline-conv
|
| 17 |
|
| 18 |
-
# ---
|
| 19 |
numpy>=1.24
|
| 20 |
pandas>=2.0
|
| 21 |
scikit-learn>=1.3
|
|
|
|
| 1 |
+
# --- Torch (CPU) ---
|
| 2 |
+
torch==2.2.0
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
+
# --- PyG + compiled ops (CPU wheels) ---
|
| 5 |
+
torch-geometric>=2.6.0
|
|
|
|
|
|
|
| 6 |
-f https://data.pyg.org/whl/torch-2.2.0+cpu.html
|
| 7 |
pyg-lib
|
| 8 |
torch-scatter
|
|
|
|
| 10 |
torch-cluster
|
| 11 |
torch-spline-conv
|
| 12 |
|
| 13 |
+
# --- Your existing deps (keep as you had) ---
|
| 14 |
numpy>=1.24
|
| 15 |
pandas>=2.0
|
| 16 |
scikit-learn>=1.3
|