Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +42 -28
requirements.txt
CHANGED
|
@@ -1,42 +1,56 @@
|
|
| 1 |
-
# ---
|
| 2 |
-
-
|
| 3 |
-
--
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
|
|
|
| 7 |
|
| 8 |
-
# ---
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
torch-
|
| 12 |
-
|
| 13 |
-
torch-
|
| 14 |
-
|
| 15 |
-
torch-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
| 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 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|