Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +20 -29
requirements.txt
CHANGED
|
@@ -1,33 +1,24 @@
|
|
| 1 |
-
# Core
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
|
| 11 |
-
#
|
| 12 |
-
|
| 13 |
-
|
|
|
|
| 14 |
|
| 15 |
-
#
|
| 16 |
-
|
| 17 |
-
transformers>=4.40
|
| 18 |
-
sentence-transformers>=2.2
|
| 19 |
-
scikit-learn>=1.3
|
| 20 |
|
| 21 |
-
#
|
| 22 |
-
|
| 23 |
-
dash>=2.14
|
| 24 |
-
matplotlib>=3.8
|
| 25 |
-
|
| 26 |
-
# Hugging Face integration
|
| 27 |
-
gradio==4.36.0
|
| 28 |
-
huggingface-hub==0.20.3
|
| 29 |
-
trackio<1.0
|
| 30 |
-
|
| 31 |
-
# Utilities
|
| 32 |
-
tqdm>=4.66
|
| 33 |
-
python-dotenv>=1.0
|
|
|
|
| 1 |
+
# Core dependencies - versions compatible with HF Spaces
|
| 2 |
+
huggingface-hub<1.0
|
| 3 |
+
transformers>=4.30.0
|
| 4 |
+
torch>=2.0.0
|
| 5 |
+
numpy<2.0.0
|
| 6 |
+
pandas
|
| 7 |
+
scipy
|
| 8 |
+
scikit-learn
|
| 9 |
|
| 10 |
+
# Visualization
|
| 11 |
+
plotly
|
| 12 |
+
matplotlib
|
| 13 |
+
seaborn
|
| 14 |
|
| 15 |
+
# NLP & Language
|
| 16 |
+
sentence-transformers
|
| 17 |
+
langdetect
|
| 18 |
+
sacremoses
|
| 19 |
|
| 20 |
+
# Graph & Network
|
| 21 |
+
networkx
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
# Datasets from HF Hub
|
| 24 |
+
datasets
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|