kaurm43 commited on
Commit
9b3049a
·
verified ·
1 Parent(s): 48165c9

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +5 -10
requirements.txt CHANGED
@@ -1,13 +1,8 @@
1
- # --- PyTorch (CPU) ---
2
- --index-url https://download.pytorch.org/whl/cpu
3
- torch==2.2.2
4
- torchvision==0.17.2
5
- torchaudio==2.2.2
6
 
7
- # --- PyG core ---
8
- torch-geometric==2.5.3
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
- # --- the rest of your deps ---
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