kaurm43 commited on
Commit
92928f6
·
verified ·
1 Parent(s): c18e639

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +42 -28
requirements.txt CHANGED
@@ -1,42 +1,56 @@
1
- # --- Torch CPU (explicit wheels) ---
2
- --index-url https://pypi.org/simple
3
- --extra-index-url https://download.pytorch.org/whl/cpu
4
- torch==2.1.0+cpu
5
- torchvision==0.16.0+cpu
6
- torchaudio==2.1.0+cpu
 
7
 
8
- # --- PyG wheels MUST match torch version above ---
9
- -f https://data.pyg.org/whl/torch-2.1.0+cpu.html
10
- pyg-lib
11
- torch-scatter
12
- torch-sparse
13
- torch-cluster
14
- torch-spline-conv
15
- torch-geometric
 
 
 
 
16
 
17
- numpy==1.26.4
 
 
 
18
  pandas>=2.0
19
  scikit-learn>=1.3
 
 
 
 
 
 
 
20
  transformers>=4.39
21
  datasets>=2.18
22
  sentencepiece>=0.1.99
23
  tiktoken>=0.6.0
24
  huggingface_hub>=0.20.0
25
- openai>=1.6.0
26
- langchain>=0.2.0
27
- langchain-community>=0.2.0
28
- langchain-openai>=0.1.0
29
- langchain-text-splitters>=0.2.0
30
- chromadb>=0.5.0
31
  requests>=2.31
32
  beautifulsoup4>=4.12
33
- tqdm>=4.66
34
-
35
- rdkit-pypi==2022.9.5
36
-
37
  matplotlib>=3.7
38
  plotly>=5.18
39
- gradio>=4.0
40
- joblib>=1.3
41
  selfies>=2.1
42
- networkx>=3.2
 
 
 
 
 
 
1
+ # ------------------------------------------------------------
2
+ # PyTorch (CPU-only) — use official PyTorch CPU wheel index
3
+ # ------------------------------------------------------------
4
+ --index-url https://download.pytorch.org/whl/cpu
5
+ torch==2.2.1
6
+ torchvision==0.17.1
7
+ torchaudio==2.2.1
8
 
9
+ # ------------------------------------------------------------
10
+ # PyTorch Geometric (PyG)
11
+ # IMPORTANT: Pin compiled ops to the exact wheels for torch 2.2.x CPU
12
+ # See: https://data.pyg.org/whl/torch-2.2.1+cpu.html
13
+ # ------------------------------------------------------------
14
+ -f https://data.pyg.org/whl/torch-2.2.1+cpu.html
15
+ pyg-lib==0.4.0
16
+ torch-scatter==2.1.2
17
+ torch-sparse==0.6.18
18
+ torch-cluster==1.6.3
19
+ torch-spline-conv==1.2.2
20
+ torch-geometric==2.5.3
21
 
22
+ # ------------------------------------------------------------
23
+ # Core scientific stack
24
+ # ------------------------------------------------------------
25
+ numpy>=1.24
26
  pandas>=2.0
27
  scikit-learn>=1.3
28
+ networkx>=3.2
29
+ joblib>=1.3
30
+ tqdm>=4.66
31
+
32
+ # ------------------------------------------------------------
33
+ # HF / NLP
34
+ # ------------------------------------------------------------
35
  transformers>=4.39
36
  datasets>=2.18
37
  sentencepiece>=0.1.99
38
  tiktoken>=0.6.0
39
  huggingface_hub>=0.20.0
40
+ safetensors>=0.4.0
41
+
42
+ # ------------------------------------------------------------
43
+ # App + tooling
44
+ # ------------------------------------------------------------
45
+ gradio>=4.0
46
  requests>=2.31
47
  beautifulsoup4>=4.12
 
 
 
 
48
  matplotlib>=3.7
49
  plotly>=5.18
 
 
50
  selfies>=2.1
51
+
52
+ # Needed because your app imports: from dotenv import load_dotenv
53
+ python-dotenv>=1.0.0
54
+
55
+ # Chemistry
56
+ rdkit