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

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +12 -8
requirements.txt CHANGED
@@ -1,17 +1,21 @@
1
- --extra-index-url https://download.pytorch.org/whl/cpu
2
- torch==2.1.2
3
- torchvision==0.16.2
4
- torchaudio==2.1.2
 
5
 
6
- -f https://data.pyg.org/whl/torch-2.1.2+cpu.html
7
- pyg_lib
 
 
 
 
8
  torch-scatter
9
  torch-sparse
10
  torch-cluster
11
  torch-spline-conv
12
- torch-geometric
13
 
14
- # rest of your deps...
15
  numpy>=1.24
16
  pandas>=2.0
17
  scikit-learn>=1.3
 
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
14
  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