Update requirements.txt
Browse files- requirements.txt +6 -8
requirements.txt
CHANGED
|
@@ -1,16 +1,14 @@
|
|
| 1 |
# ParticleNet β GNN Particle Collision Classifier
|
| 2 |
# Hugging Face Spaces requirements
|
| 3 |
# Python 3.10+
|
| 4 |
-
#
|
| 5 |
-
# Install order matters on HF Spaces:
|
| 6 |
-
# torch must come before torch_geometric and its companions.
|
| 7 |
|
| 8 |
# ββ core deep learning ββ
|
| 9 |
torch==2.2.2
|
| 10 |
-
torchvision==0.17.2
|
| 11 |
|
| 12 |
# ββ graph neural networks ββ
|
| 13 |
-
#
|
|
|
|
| 14 |
torch-geometric==2.5.3
|
| 15 |
torch-scatter==2.1.2
|
| 16 |
torch-sparse==0.6.18
|
|
@@ -18,10 +16,10 @@ torch-cluster==1.6.3
|
|
| 18 |
|
| 19 |
# ββ scientific computing ββ
|
| 20 |
numpy==1.26.4
|
| 21 |
-
scikit-learn==1.4.2
|
| 22 |
|
| 23 |
# ββ visualisation ββ
|
| 24 |
-
plotly==5.22.0
|
| 25 |
|
| 26 |
# ββ Gradio UI ββ
|
| 27 |
-
gradio==4.36.1
|
|
|
|
| 1 |
# ParticleNet β GNN Particle Collision Classifier
|
| 2 |
# Hugging Face Spaces requirements
|
| 3 |
# Python 3.10+
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
# ββ core deep learning ββ
|
| 6 |
torch==2.2.2
|
| 7 |
+
torchvision==0.17.2
|
| 8 |
|
| 9 |
# ββ graph neural networks ββ
|
| 10 |
+
# Tell pip to fetch pre-built wheels for CPU instead of compiling from source
|
| 11 |
+
--find-links https://data.pyg.org/whl/torch-2.2.0+cpu.html
|
| 12 |
torch-geometric==2.5.3
|
| 13 |
torch-scatter==2.1.2
|
| 14 |
torch-sparse==0.6.18
|
|
|
|
| 16 |
|
| 17 |
# ββ scientific computing ββ
|
| 18 |
numpy==1.26.4
|
| 19 |
+
scikit-learn==1.4.2
|
| 20 |
|
| 21 |
# ββ visualisation ββ
|
| 22 |
+
plotly==5.22.0
|
| 23 |
|
| 24 |
# ββ Gradio UI ββ
|
| 25 |
+
gradio==4.36.1
|