Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +23 -22
requirements.txt
CHANGED
@@ -1,23 +1,24 @@
|
|
|
|
1 |
huggingface_hub==0.25.2
|
2 |
-
torch
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
1 |
+
# Core dependencies
|
2 |
huggingface_hub==0.25.2
|
3 |
+
torch==2.1.0
|
4 |
+
transformers==4.36.0
|
5 |
+
sentence-transformers==2.2.2
|
6 |
+
faiss-cpu==1.7.4
|
7 |
+
numpy==1.24.3
|
8 |
+
gradio==4.19.2
|
9 |
+
tqdm==4.66.1
|
10 |
+
python-dotenv==1.0.0
|
11 |
+
|
12 |
+
# Machine Learning dependencies
|
13 |
+
tf-keras==2.15.0 # backwards-compatible keras
|
14 |
+
tensorflow==2.15.0 # specific version
|
15 |
+
scikit-learn==1.3.2
|
16 |
+
|
17 |
+
# Tracking and visualization
|
18 |
+
wandb==0.16.0
|
19 |
+
matplotlib==3.8.2
|
20 |
+
seaborn==0.13.0
|
21 |
+
pandas==2.1.3
|
22 |
+
|
23 |
+
# Development dependencies
|
24 |
+
pytest==7.4.3
|